Search
Table.RowsCount Property
See Also
 



Gets or sets the number of rows in this table.

 Syntax

VB6  Copy Code

Public Property Get RowsCount() As Long
Public Property Let RowsCount( _
    ByVal value As Long _
)

C++  Copy Code

public:
int get_RowsCount ()
void put_RowsCount (
    int value
)

 Property Value

A long value. Initialized with FlowChart.TableRowsCount.

 Remarks

The number of rows in the table. If you increase or decrease it, rows are added to / removed from the end of the table.

 See Also