Top
PowerCOBOL V11.0 Reference
FUJITSU Software

5.87 SelectCell Method

Description:

Sets the focus on the specified cell.

Used in controls:

Table

Used in objects:

None.

Parameters:

VT_I4 - RowS9(9) COMP-5

VT_I4 - ColumnS9(9) COMP-5

Description of Parameters:

Row: The row number of the target cell.

Column: The column number of the target cell.

Return value:

None.

Example:

WORKING-STORAGE SECTION.
01 TableRow     PIC S9(9) COMP-5.
01 TableColumn  PIC S9(9) COMP-5.
PROCEDURE DIVISION.
* Select Table cell 2,3
    MOVE 2 TO TableRow
    MOVE 3 TO TableColumn
    INVOKE CmTable1 "SelectCell"
      USING TableRow TableColumn

Backward compatibility
method name:

SELECTCELL

Backward compatibility
arguments:

1. S9(4) COMP-5
2. S9(4) COMP-5