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 number of the first column within the rectangular area of cells.

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

//--- Get FirstColumn
int firstCol = a.FirstColumn;

//--- Set FirstColumn
a.FirstColumn = 5;
{code}
{code:vbnet|title=vb.net
}

'--- Get FirstColumn
Dim firstCol As Integer = a.FirstColumn

'--- Set FirstColumn
a.FirstColumn = 5
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the 0\-based number of the first column within the rectangular area of cells.{excerpt}
{signature:C#}
 public int FirstColumn{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property FirstColumn() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle

...

{code}

{example}
{scrollbar}