ShowRow Method

Class

Table.

Action

Ensures that a specified row is displayed on the screen.

Availability

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

Syntax

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

Example

The following example makes sure the 40th row in the table is displayed.

INTEGER iDisplay
iDisplay = Prod.ProdTable.ShowRow (40)
Print (iDisplay)

// Result:
// 5 if the 40th row in the table is currently the fifth one displayed.