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

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

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

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

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

'--- Set FirstCount
a.RowCount = 7
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the number of rows in the area.{excerpt}
{signature:C#}
 public int RowCount{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property RowCount() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle

...

{code}

{example}
{scrollbar}