Sets or returns the number of rows in the area.

 public int RowCount{ get; }
Public ReadOnly Property RowCount() As Integer

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

//--- Set FirstCount
a.RowCount = 7;

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

'--- Set FirstCount
a.RowCount = 7