MapWinGIS:Point Z
From MapWindow GIS
Z
Gets or sets the Z value of this point.
VB.NET Usage
Property Z() As Double
Parameters
|
ReturnValue | The z value of the point. |
Sample Code
Private Sub PointZ()
Dim point As New MapWinGIS.Point()
Dim zvalue As Double
'Set the z value value
zvalue = 3000
'Set the z value value for the point
point.Z = zvalue
'Get the z value value for the point
zvalue = point.Z
End Sub
VB 6 Usage
Property Z() As Double
Parameters
|
ReturnValue | The z value of the point. |
Sample Code
Private Sub PointZ()
Dim point As New MapWinGIS.point
Dim zvalue As Double
'Set the z value value
zvalue = 3000
'Set the z value value for the point
point.Z = zvalue
'Get the z value value for the point
zvalue = point.Z
End Sub
















