MapWinGIS:Table StartEditingTable
From MapWindow GIS
StartEditingTable
Sets the table to allow table editing.
See also StopEditingTable
VB.NET Usage
Function StartEditingTable(Optional cBack As MapWinGIS.ICallback) As Boolean
Parameters
|
cBack | Optional. The ICallback object which will receive progress and error events while the table is being set to allow editing. |
| ReturnValue | A boolean value representing the success or failure of setting the table to allow editing. |
Sample Code
Private Sub StartEditingTable()
Dim table As New MapWinGIS.Table()
Dim success As Boolean
'Open a table
success = table.Open("C:\test.dbf")
'Start editing the table
success = table.StartEditingTable()
End Sub
VB 6 Usage
Function StartEditingTable(Optional cBack As ICallback) As Boolean
Parameters
|
cBack | Optional. The ICallback object which will receive progress and error events while the table is being set to allow editing. |
| ReturnValue | A boolean value representing the success or failure of setting the table to allow editing. |
Sample Code
Private Sub StartEditingTable()
Dim table As New MapWinGIS.table
Dim success As Boolean
'Open a table
success = table.Open("C:\test.dbf")
'Start editing the table
success = table.StartEditingTable()
End Sub
















