ASP.NET Web Document Viewer SDK Control

RightPanelBorderWidth

 

Set the border width of right panel.

RightPanelBorderWidth[=string]


Parameter
string
 the border width of right panel. The default value is 2px

Remark
This property is Read/Write.

Example

   

C#
protected void Page_Load(object sender, EventArgs e)
{
WebDocumentViewer1.RightPanelBorderWidth = "5px";
}



   

HTML
<div>
<cc1:WebDocumentViewer ID="WebDocumentViewer1" runat="server" Width="1280" Height="720" RightPanelBorderWidth="5px" />
</div>
}