Table of Contents

ExcelFile.SelectCell Method

Selects a single cell. To select multiple cells, use SelectCells

Syntax

Namespace: FlexCel.Core

public void SelectCell(Int32 row, Int32 col, Boolean scrollWindow)

Parameters

<-> Parameter Type Description
row Int32 Row to select (1 based)
col Int32 Column to select (1 based)
scrollWindow Boolean When true, window will scroll so the selected cell is visible. This is equivalent to using ScrollWindow(Int32, Int32) method and is provided as a shortcut.

See also