MapWinGIS:Table NumRows
From MapWindow GIS
NumRows
Gets the number of rows in the table.
VB.NET Usage
ReadOnly Property NumRows() As Integer
Parameters
|
ReturnValue | The number of rows in the table. |
Sample Code
Private Sub TableNumRows()
Dim table As New MapWinGIS.Table()
Dim count As Integer
'Get the number of rows in the table
count = table.NumRows
End Sub
VB 6 Usage
ReadOnly Property NumRows() As Long
Parameters
|
ReturnValue | The number of rows in the table. |
Sample Code
Private Sub TableNumRows()
Dim table As New MapWinGIS.table
Dim count As Long
'Get the number of rows in the table
count = table.NumRows
End Sub
















