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
















