TableSelectColumn

Syntax

TableSelectColumn

Remarks

Selects the table column containing the insertion point, or selects all columns containing the selection. If the insertion point or selection is not in a table, an error occurs.

Example

This example adds two new columns before the first column in a table:


TableSelectTable                'Select the entire table
StartOfRow                    'Go to the first cell
TableSelectColumn            'Select the first column
CharRight 1, 1                'Extend selection to the second column
TableInsertColumn            'Insert two new columns

See Also

TableSelectRow, TableSelectTable