ShowColumn Method

Class

Table.

Action

Ensures that a specified column is displayed on the screen.

Availability

This functionality is supported only if you are using the Classic Agent.

Syntax

iDisplayOrder = table.ShowColumn (iColumn [, bAtLeft])
Variable Description
iDisplayOrder The 1-based visible order for iRow after it has been displayed. INTEGER.
iColumn The 1-based index value for the column to display. INTEGER.
bAtLeft Optional. If TRUE, ShowColumn tries to make iColumn the first visible column on the left. Default is FALSE. BOOLEAN.

Example

The following example makes sure the 10th column in the table is displayed.

INTEGER iDisplay
iDisplay = Prod.ProdTable.ShowColumn (10)
Print (iDisplay)

// Result:

// 5 if the 10th column in the table is currently the fifth one displayed.