MapWinGIS:Tin Open
From MapWindow GIS
Open
Opens a TIN from the specified file.
VB.NET Usage
Function Open(TinFile As String, Optional cBack As MapWinGIS.ICallback) As Boolean
Parameters
|
TinFile | The filename of the TIN to be opened. |
| cBack | Optional. The ICallback object which will receive progress and error messages while the TIN is being opened. |
| ReturnValue | A boolean value representing the success or failure of opening the TIN. |
Sample Code
Private Sub OpenTIN()
Dim tin As New MapWinGIS.Tin()
Dim success As Boolean
'Open a TIN file
success = tin.Open("C:\test.tin", Me)
End Sub
VB 6 Usage
Function Open(TinFile As String, Optional cBack As ICallback) As Boolean
Parameters
|
TinFile | The filename of the TIN to be opened. |
| cBack | Optional. The ICallback object which will receive progress and error messages while the TIN is being opened. |
| ReturnValue | A boolean value representing the success or failure of opening the TIN. |
Sample Code
Private Sub OpenTIN()
Dim tin As New MapWinGIS.tin
Dim success As Boolean
'Open a TIN file
success = tin.Open("C:\test.tin", Me)
End Sub
















