MapWinGIS:Grid Filename
From MapWindow GIS
Filename
The filename associated with the object.
VB.NET Usage
ReadOnly Property Filename() As String
Parameters
|
ReturnValue | The filename associated with the object. |
Sample Code
Private Sub Filename()
Dim grid As New MapWinGIS.Grid()
Dim filename As String
'Open a grid from disk
grid.Open("C:\grid.asc")
'Get the filename of the grid
filename = grid.Filename
End Sub
VB 6 Usage
ReadOnly Property Filename() As String
Parameters
|
ReturnValue | The filename associated with the object. |
Sample Code
Private Sub filename()
Dim grid As New MapWinGIS.grid
Dim filename As String
'Open a grid from disk
grid.Open ("C:\grid.asc")
'Get the filename of the grid
filename = grid.filename
End Sub
















