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
















