Table of Contents

ExcelFile.SetRowOutlineLevel Method

Overloads

ExcelFile.SetRowOutlineLevel(Int32, Int32)

Sets the Outline level for a row.

Syntax

Namespace: FlexCel.Core

public void SetRowOutlineLevel(Int32 row, Int32 level)

Parameters

<-> Parameter Type Description
row Int32 Row index (1 based)
level Int32 Outline level. must be between 0 and 7.

See also

ExcelFile.SetRowOutlineLevel(Int32, Int32, Int32)

Sets the Outline level for a row range.

Syntax

Namespace: FlexCel.Core

public abstract void SetRowOutlineLevel(Int32 firstRow, Int32 lastRow, Int32 level)

Parameters

<-> Parameter Type Description
firstRow Int32 Row index of the first row on the range. (1 based)
lastRow Int32 Row index of the last row on the range. (1 based)
level Int32 Outline level. must be between 0 and 7.

See also