MapWinGIS:Shapefile NumShapes
From MapWindow GIS
NumShapes
Gets the number of shapes in the shapefile.
VB.NET Usage
ReadOnly Property NumShapes() As Integer
Parameters
|
ReturnValue | The number of shapes in the shapefile. |
Sample Code
Private Sub ShapefileNumShapes()
Dim sf As New MapWinGIS.Shapefile()
Dim count As Integer
'Get the number of shapes in the shapefile
count = sf.NumShapes
End Sub
VB 6 Usage
ReadOnly Property NumShapes() As Long
Parameters
|
ReturnValue | The number of shapes in the shapefile. |
Sample Code
Private Sub ShapefileNumShapes()
Dim sf As New MapWinGIS.Shapefile
Dim count As Long
'Get the number of shapes in the shapefile
count = sf.NumShapes
End Sub
















