Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns the 0-based index of the first column that is shown in the worksheet.
C#
<p> public int FirstShownColumn{ get; set; }</p>
vb.net
<p>Public Property FirstShownColumn() As Integer</p>

Examples

C#
//--- Get FirstShownColumn
int firstCol = ws.FirstShownColumn;
 
//--- Set FirstShownColumn
ws.FirstShownColumn = 5;
vb.net
'--- Get FirstShownColumn
Dim firstCol As Integer = ws.FirstShownColumn
 
'--- Set FirstShownColumn
ws.FirstShownColumn = 5

  • No labels