MapWinGIS:Field Type
From MapWindow GIS
Type
Gets or sets the fieldtype of the field.
See also FieldType
VB.NET Usage
Property Type() As MapWinGIS.FieldType
Parameters
|
ReturnValue | The fieldtype of the field. |
Sample Code
Private Sub FieldType()
Dim field As New MapWinGIS.Field()
Dim fieldtype As New MapWinGIS.FieldType()
'Set the fieldtype for the field
field.Type = MapWinGIS.FieldType.DOUBLE_FIELD
'Get the fieldtype for the field
fieldtype = field.Type
End Sub
VB 6 Usage
Property Type() As FieldType
Parameters
|
ReturnValue | The fieldtype of the field. |
Sample Code
Private Sub FieldType()
Dim field As New MapWinGIS.field
Dim ftype As New MapWinGIS.FieldType
'Set the fieldtype for the field
field.Type = MapWinGIS.FieldType.DOUBLE_FIELD
'Get the fieldtype for the field
ftype = field.Type
End Sub
















