MapWinGIS:GridHeader NodataValue
From MapWindow GIS
NodataValue
The value representing cells in the grid with no-data or missing data values.
VB.NET Usage
Property NodataValue() As Object
Parameters
|
ReturnValue | The value representing cells in the grid with no-data values. |
Sample Code
Private Sub NodataValue()
Dim header As New MapWinGIS.GridHeader()
Dim nodata As Double
'Set the nodata value to be used
nodata = -9999
'Set the no data value for the grid header
header.NodataValue = nodata
'Get the no data value for the grid header
nodata = header.NodataValue
End Sub
VB 6 Usage
Property NodataValue() As Object
Parameters
|
ReturnValue | The value representing cells in the grid with no-data values. |
Sample Code
Private Sub NodataValue()
Dim header As New MapWinGIS.GridHeader
Dim nodata As Double
'Set the nodata value to be used
nodata = -9999
'Set the no data value for the grid header
header.NodataValue = nodata
'Get the no data value for the grid header
nodata = header.NodataValue
End Sub
















