MapWinGIS:Shapefile ShapefileType
From MapWindow GIS
ShapefileType
Gets the type of the shapefile. All shapes contained in a shapefile must have the same shapefile type as the shapefile except for shapes of type SHP_NULLSHAPE.
See also ShpfileType
VB.NET Usage
ReadOnly Property ShapefileType() As MapWinGIS.ShpfileType
Parameters
|
ReturnValue | The type of the shapefile. |
Sample Code
Private Sub ShapefileType()
Dim sf As New MapWinGIS.Shapefile()
Dim sf_type As New MapWinGIS.ShpfileType()
'Get the shapefile type of the shapefile
sf_type = sf.ShapefileType
End Sub
VB 6 Usage
ReadOnly Property ShapefileType() As ShpfileType
Parameters
|
ReturnValue | The type of the shapefile. |
Sample Code
Private Sub ShapefileType()
Dim sf As New MapWinGIS.Shapefile
Dim sf_type As New MapWinGIS.ShpfileType
'Get the shapefile type of the shapefile
sf_type = sf.ShapefileType
End Sub
















