MapWinGIS:Table CreateNew
From MapWindow GIS
CreateNew
Creates a new attribute table. Note: A new table is automatically in editing mode after it is created.
VB.NET Usage
Function CreateNew(dbfFilename As String) As Boolean
Parameters
|
dbfFilename | The filename for the new table. |
| ReturnValue | A boolean value representing the success or failure of creating the new table. |
Sample Code
Private Sub CreateTable()
Dim table As New MapWinGIS.Table()
Dim success As Boolean
'Create a new table using the specified filename
success = table.CreateNew("c:\test.dbf")
End Sub
VB 6 Usage
Function CreateNew(dbfFilename As String) As Boolean
Parameters
|
dbfFilename | The filename for the new table. |
| ReturnValue | A boolean value representing the success or failure of creating the new table. |
Sample Code
Private Sub CreateTable()
Dim table As New MapWinGIS.table
Dim success As Boolean
'Create a new table using the specified filename
success = table.CreateNew("c:\test.dbf")
End Sub
















