MapWinGIS:ESRIGridManager DeleteESRIGrids
From MapWindow GIS
DeleteESRIGrids
Deletes the specified ESRI grid.
VB.NET Usage
Function DeleteESRIGrids(Filename As String) As Boolean
Parameters
|
Filename | The filename of the ESRI grid to be deleted. |
| ReturnValue | A boolean value representing the success or failure of deleting the specified ESRI grid. |
Sample Code
Private Sub DeleteESRIGrid()
Dim ESRIgridmanager As New MapWinGIS.ESRIGridManager()
Dim success As Boolean
'Delete the ESRI grid
success = ESRIgridmanager.DeleteESRIGrids("C:\test.grd")
End Sub
VB 6 Usage
Function DeleteESRIGrids(Filename As String) As Boolean
Parameters
|
Filename | The filename of the ESRI grid to be deleted. |
| ReturnValue | A boolean value representing the success or failure of deleting the specified ESRI grid. |
Sample Code
Private Sub DeleteESRIGrid()
Dim ESRIgridmanager As New MapWinGIS.ESRIgridmanager
Dim success As Boolean
'Delete the ESRI grid
success = ESRIgridmanager.DeleteESRIGrids("C:\test.grd")
End Sub
















