MapWinGIS:Field Name
From MapWindow GIS
Name
Gets or sets the name of the field.
VB.NET Usage
Property Name() As String
Parameters
|
ReturnValue | The name of the field. |
Sample Code
Private Sub FieldName()
Dim field As New MapWinGIS.Field()
Dim name As String
'Set the name to use
name = "test field"
'Set the name for the field
field.Name = name
'Get the name for the field
name = field.Name
End Sub
VB 6 Usage
Property Name() As String
Parameters
|
ReturnValue | The name of the field. |
Sample Code
Private Sub FieldName()
Dim field As New MapWinGIS.field
Dim name As String
'Set the name to use
name = "test field"
'Set the name for the field
field.name = name
'Get the name for the field
name = field.name
End Sub
















