Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

Description

Excerpt

Sets or returns the 0-based index of the first column that is shown in the worksheet.

Signature
C#
C#
<p> public int FirstShownColumn{ get; set; }</p>
Signature
vb.net
vb.net
<p>Public Property FirstShownColumn() As Integer</p>

Example
Code Block
csharp
csharp
titleC#
          //--- Get FirstShownColumn
          int firstCol = ws.FirstShownColumn;

          //--- Set FirstShownColumn
          ws.FirstShownColumn = 5;
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Get FirstShownColumn
          Dim firstCol As Integer = ws.FirstShownColumn

          '--- Set FirstShownColumn
          ws.FirstShownColumn = 5