ASP.NET Web Document Viewer SDK Control

EnableRotateButton

 

Visible/Invisible the Rotate Left, Rotate Right buttons.

EnableRotateButton[=bool]


Parameter
bool
true - visible the Rotate Left, Rotate Right buttons , false - invisible the Rotate Left, Rotate Right buttons.

Remark
This property is Read/Write.

Example

   

C#
protected void Page_Load(object sender, EventArgs e)
{
WebDocumentViewer1.EnableRotateButton = true;
}



   

HTML
<div>
<cc1:WebDocumentViewer ID="WebDocumentViewer1" runat="server" Width="1280" Height="720" EnableRotateButton="true" />
</div>
}