MapWinGIS: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 shapefile As New MapWinGIS.Shapefile()
Dim filename As String
'Open a shapefile from disk
shapefile.Open("C:\test.shp")
'Get the filename of the shapefile
filename = shapefile.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 shapefile As New MapWinGIS.shapefile
Dim filename As String
'Open a shapefile from disk
shapefile.Open ("C:\test.shp")
'Get the filename of the shapefile
filename = shapefile.filename
End Sub
















