Table of Contents

TExcelFile.ScrollWindow Method

Overloads

TExcelFile.ScrollWindow(Integer, Integer)

Scrolls the window to a specified place. If the window is split, it will move the left and top panels. This property can work in different windows depending on the value of ActiveWindow

Syntax

Unit: FlexCel.Core

procedure TExcelFile.ScrollWindow(const row: Integer; const col: Integer); overload;

Parameters

<-> Parameter Type Description
const row Integer First visible row.
const col Integer First visible column.

See also

TExcelFile.ScrollWindow(TPanePosition, Integer, Integer)

Scrolls the window to a specified place. This property can work in different windows depending on the value of ActiveWindow

Syntax

Unit: FlexCel.Core

procedure TExcelFile.ScrollWindow(const panePosition: TPanePosition; const row: Integer; const col: Integer); overload; virtual; abstract;

Parameters

<-> Parameter Type Description
const panePosition TPanePosition Pane to move. Note that if you move for example the left column of the upper left pane, you will also move the left column of the lower left pane.
const row Integer First visible row.
const col Integer First visible column.

See also