SelectColumn Method (JTable)

Class

JTable.

Action

Selects the specified column.

Syntax

table.SelectColumn(column, [clearSelection])
Variable Description
column The name or index of the column to select. ItemIdentifier.
clearSelection Optional: Whether to clear the previous selection. The default is true. Boolean.

Examples

table.SelectColumn("Street", False)
table.SelectColumn(5, False)