Edit Method

Build 1501 on 14/Nov/2017  This topic last edited on: 23/Mar/2016, at 12:24

Description

Edits the attributes with a dialog identical to the one used by the EditTableColumnDlg 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.GetTableColumn.

Example

This script edits the attributes of the selected tabulation column(s) (identical to the EditTableColumnDlg command):

Dim objTableCol = Text.GetTableColumn

If objTableCol.Edit Then

 Text.SetTableColumn (objTableCol)

End If