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
















