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
















