TExcelFile.SelectCell Method
Selects a single cell. To select multiple cells, use SelectCells
Syntax
Unit: FlexCel.Core
procedure TExcelFile.SelectCell(const row: Integer; const col: Integer; const aScrollWindow: Boolean);
Parameters
<-> |
Parameter |
Type |
Description |
const |
row |
Integer |
Row to select (1 based) |
const |
col |
Integer |
Column to select (1 based) |
const |
aScrollWindow |
Boolean |
When true, window will scroll so the selected cell is visible. This is equivalent to using ScrollWindow(Integer, Integer) method and is provided as a shortcut. |
See also