MapWinGIS:Table Close
From MapWindow GIS
Close
Closes the attribute table.
VB.NET Usage
Function Close() As Boolean
Parameters
|
ReturnValue | A boolean value representing the success or failure of closing the attribute table. |
Sample Code
Private Sub CloseTable()
Dim table As New MapWinGIS.Table()
Dim success As Boolean
'Create a new table using the specified filename
success = table.CreateNew("c:\test.dbf")
'Close the table
success = table.Close
End Sub
VB 6 Usage
Function Close() As Boolean
Parameters
|
ReturnValue | A boolean value representing the success or failure of closing the attribute table. |
Sample Code
Private Sub CloseTable()
Dim table As New MapWinGIS.table
Dim success As Boolean
'Create a new table using the specified filename
success = table.CreateNew("c:\test.dbf")
'Close the table
success = table.Close
End Sub
















