MapWinGIS:Grid Clear
From MapWindow GIS
Clear
Clears all data in the grid, setting the value of all cells in the grid to the specified clear value.
VB.NET Usage
Function Clear(ClearValue As Object) As Boolean
Parameters
| ClearValue | The value to set all of the grid's cells to. |
|
ReturnValue | A boolean value representing the success or failure of clearing the grid. |
Sample Code
Private Sub ClearGrid()
Dim grid As New MapWinGIS.Grid()
'Open a grid from disk
grid.Open("C:\grid.asc")
'Clear the grid, using 15 as the value to assign to all grid cells
grid.Clear(15)
'Save the cleared grid to disk
grid.Save("C:\cleargrid.asc")
'Close the grid
grid.Close()
End Sub
VB 6 Usage
Function Clear(ClearValue As Object) As Boolean
Parameters
|
ClearValue | The value to set all of the grid's cells to. |
Sample Code
Private Sub ClearGrid()
Dim grid As New MapWinGIS.grid
'Open a grid from disk
grid.Open ("C:\grid.asc")
'Clear the grid, using 15 as the value to assign to all grid cells
grid.Clear (15)
'Save the cleared grid to disk
grid.Save ("C:\cleargrid.asc")
'Close the grid
grid.Close
End Sub
















