MapWinGIS:Image 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 img As New MapWinGIS.Image()
Dim filename As String
'Open an image from disk
img.Open("C:\image.bmp")
'Get the filename of the image
filename = img.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 img As New MapWinGIS.Image
Dim filename As String
'Open an image from disk
img.Open ("C:\image.bmp")
'Get the filename of the image
filename = img.filename
End Sub
















