MapWinGIS:GridHeader dX
From MapWindow GIS
dX
Gets or sets the width of the grid cell in physical units for the grid represented by the grid header.
VB.NET Usage
Property dX() As Double
Parameters
| ReturnValue | The width of a grid cell in physical units for the grid represented by the grid header. |
Sample Code
Private Sub GriddX()
Dim header As New MapWinGIS.GridHeader()
Dim width As Double
'Set the width value to be used
width = 30
'Set the width of a grid cell in the grid header
header.dX = width
'Get the width of a grid cell from the grid header
width = header.dX
End Sub
VB 6 Usage
Property dX() As Double
Parameters
| ReturnValue | The width of a grid cell in physical units for the grid represented by the grid header. |
Sample Code
Private Sub GriddX()
Dim header As New MapWinGIS.GridHeader
Dim width As Double
'Set the width value to be used
width = 30
'Set the width of a grid cell in the grid header
header.dX = width
'Get the width of a grid cell from the grid header
width = header.dX
End Sub
















