MapWinGIS:Grid DataType
From MapWindow GIS
DataType
Returns the data type of the values stored in the grid.
See also GridDataType
VB.NET Usage
ReadOnly Property DataType() As MapWinGIS.GridDataType
Parameters
|
ReturnType | The data type of the values stored in the grid. |
Sample Code
Private Sub DataType()
Dim grid As New MapWinGIS.Grid()
'Open a grid from disk
grid.Open("C:\grid.asc")
'Display the file type of the grid
MsgBox(grid.DataType.ToString)
'Close the grid
grid.Close()
End Sub
VB 6 Usage
ReadOnly Property DataType() As GridDataType
Parameters
|
ReturnType | The data type of the values stored in the grid. |
Sample Code
Private Sub DataType()
Dim grid As New MapWinGIS.grid
'Open a grid from disk
grid.Open ("C:\grid.asc")
'Display the file type of the grid
MsgBox (grid.DataType.ToString)
'Close the grid
grid.Close
End Sub
















