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 number of rows in the area.

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


//--- Get FirstCount
int rows = a.RowCount;

//--- Set FirstCount
a.RowCount = 7;
{code} {code:vbnet|title=
Code Block
vbnet
vbnet
titlevb.net
}


'--- Get FirstCount
Dim rows As Integer = a.RowCount

'--- Set FirstCount
a.RowCount = 7
{code} {example} {scrollbar}
Scrollbar