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

Signature
C#
C#
 public int FirstColumn{ get; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public ReadOnly Property FirstColumn() As Integer
{signature}
{example}{code:csharp|title=C#}
Example
Code Block
csharp
csharp
titleC#


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

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


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

'--- Set FirstColumn
a.FirstColumn = 5
{code} {example} {scrollbar}
Scrollbar