MapWinGIS:GridHeader YllCenter
From MapWindow GIS
YllCenter
Gets or sets the y coordinate of the center of the lower-left cell in the grid represented by the grid header.
VB.NET Usage
Property YllCenter() As Double
Parameters
|
ReturnValue | The y coordinate of the center of the lower-left cell in the grid represented by the grid header.. |
Sample Code
Private Sub YLowerLeftCenter()
Dim header As New MapWinGIS.GridHeader()
Dim y As Double
'Set the y coordinate to use
y = 33000
'Set the y lower left center coordinate for the grid header
header.YllCenter = y
'Get the y lower left center coordinate for the grid header
y = header.YllCenter
End Sub
VB 6 Usage
Property YllCenter() As Double
Parameters
|
ReturnValue | The y coordinate of the center of the lower-left cell in the grid represented by the grid header.. |
Sample Code
Private Sub YLowerLeftCenter()
Dim header As New MapWinGIS.GridHeader
Dim y As Double
'Set the y coordinate to use
y = 33000
'Set the y lower left center coordinate for the grid header
header.YllCenter = y
'Get the y lower left center coordinate for the grid header
y = header.YllCenter
End Sub
















