ASP.NET Web Document Viewer SDK Control

EnablePrintButton

 

Visible/Invisible the Print button. 

EnablePrintButton[=bool]


Parameter
bool
true - visible the Print button. , false - invisible the Print button. .

Remark
This property is Read/Write.

Example

   

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



   

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