Table of Contents

ExcelFile.ScrollWindow Method

Overloads

ExcelFile.ScrollWindow(Int32, Int32)

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

Namespace: FlexCel.Core

public void ScrollWindow(Int32 row, Int32 col)

Parameters

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

See also

ExcelFile.ScrollWindow(TPanePosition, Int32, Int32)

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

Syntax

Namespace: FlexCel.Core

public abstract void ScrollWindow(TPanePosition panePosition, Int32 row, Int32 col)

Parameters

<-> Parameter Type Description
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.
row Int32 First visible row.
col Int32 First visible column.

See also