MapWinGIS:Grid Close
From MapWindow GIS
Close
Closes the grid.
VB.NET Usage
Function Close() As Boolean
Parameters
|
ReturnValue | A boolean value representing the success or failure of closing the grid. |
Sample Code
Private Sub CloseGrid()
Dim grid As New MapWinGIS.Grid()
'Open a grid from disk
grid.Open("C:\grid.asc")
'Close the grid
grid.Close()
End Sub
VB 6 Usage
Function Close() As Boolean
Parameters
|
ReturnValue | A boolean value representing the success or failure of closing the grid. |
Sample Code
Private Sub CloseGrid()
Dim grid As New MapWinGIS.grid
'Open a grid from disk
grid.Open ("C:\grid.asc")
'Close the grid
grid.Close
End Sub
















