MapWinGIS:Shape numPoints
From MapWindow GIS
numPoints
Gets the number of points contained in the shape.
VB.NET Usage
ReadOnly Property numPoints() As Integer
Parameters
|
ReturnValue | The number of points in the shape. |
Sample Code
Private Sub ShapeNumPoints()
Dim shape As New MapWinGIS.Shape()
Dim count As Integer
'Get the number of points in the shape
count = shape.numPoints
End Sub
VB 6 Usage
ReadOnly Property numPoints() As Long
Parameters
|
ReturnValue | The number of points in the shape. |
Sample Code
Private Sub ShapeNumPoints()
Dim shape As New MapWinGIS.shape
Dim count As Long
'Get the number of points in the shape
count = shape.numPoints
End Sub
















