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
Wiki Markup
{description}
{excerpt}Sets or returns the 0\-based number of the first row within the rectangular area of cells.{excerpt}
{signature:C#}
 public int FirstRow{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property FirstRow() As Integer
{signature}
{example}{code:csharp|title=C#}

//--- Get FirstRow
int row = a.FirstRow;

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

'--- Get FirstRow
Dim row As Integer = a.FirstRow

'--- Set FirstRow
a.FirstRow = 5
{code}

{example}
{scrollbar}