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
















