Description
Edits the attributes with a dialog identical to the one used by the InsTableDlg command. Returns true if the dialog is closed with OK, returns false if the dialog is cancelled.
Syntax
object.Edit |
object
Required. Object name, returned by Text.GetNewTable or Text.GetCurTable.
Example
This script creates a new table editing its attributes with a dialog (identical to the InsTableDlg command):
Dim objNewTable = Text.GetNewTable
If objNewTable.Edit Then
Text.InsTable (objNewTable)
End If