MapWinGIS:Point M
From MapWindow GIS
M
Gets or sets the measure value of this point. Measures only apply to shapefiles with measure data.
VB.NET Usage
Property M() As Double
Parameters
|
ReturnValue | The measure value of the point. |
Sample Code
Private Sub PointM()
Dim point As New MapWinGIS.Point()
Dim measure As Double
'Set the measure value
measure = 3000
'Set the measure value for the point
point.M = measure
'Get the measure value for the point
measure = point.M
End Sub
VB 6 Usage
Property M() As Double
Parameters
|
ReturnValue | The measure value of the point. |
Sample Code
Private Sub PointM()
Dim point As New MapWinGIS.point
Dim measure As Double
'Set the measure value
measure = 3000
'Set the measure value for the point
point.M = measure
'Get the measure value for the point
measure = point.M
End Sub
















