Description
Edits the attributes with a dialog identical to the one used by the EditTableRowDlg 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.GetTableRow.
Example
This script edits the attributes of the selected tabulation row(s) (identical to the EditTableRowDlg command):
Dim objTableRow = Text.GetTableRow
If objTableRow.Edit Then
Text.SetTableRow (objTableRow)
End If