Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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

{signature}
{example}{code:csharp|title=C#}

          //--- Get FirstShownColumn
          int firstCol = ws.FirstShownColumn;

          //--- Set FirstShownColumn
          ws.FirstShownColumn = 5;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get FirstShownColumn
          Dim firstCol As Integer = ws.FirstShownColumn

          '--- Set FirstShownColumn
          ws.FirstShownColumn = 5
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the 0\-based index of the first column that is shown in the worksheet.{excerpt}
{signature:C#}
 public int FirstShownColumn{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property FirstShownColumn() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle