positionLeft

positionLeft(): Integer;

The positionLeft property of the JadeTableCell class returns the displayed position in pixels of the cell referenced by this object, relative to the client area of the Table control (the area inside borders).

The sheet, row, and column properties define the current cell.

If the current cell is not visible, one or both of the positionLeft or positionTop methods returns -1.

The code fragment in the following example shows the use of the positionLeft method.

if table1.accessCell(2, 3).positionLeft >= 0 then
    myTextBox.left := table1.accessedCell.positionLeft;
endif;