TExcelFile.SetColOutlineLevel Method
Overloads
TExcelFile.SetColOutlineLevel(Integer, Integer)
Sets the Outline level for a column.
Syntax
Unit: FlexCel.Core
procedure TExcelFile.SetColOutlineLevel(const col: Integer; const level: Integer); overload;
Parameters
<-> |
Parameter |
Type |
Description |
const |
col |
Integer |
Column index (1 based) |
const |
level |
Integer |
Outline level. must be between 0 and 7. |
See also
TExcelFile.SetColOutlineLevel(Integer, Integer, Integer)
Sets the Outline level for a column range.
Syntax
Unit: FlexCel.Core
procedure TExcelFile.SetColOutlineLevel(const firstCol: Integer; const lastCol: Integer; const level: Integer); overload; virtual; abstract;
Parameters
<-> |
Parameter |
Type |
Description |
const |
firstCol |
Integer |
Column index of the first column on the range. (1 based) |
const |
lastCol |
Integer |
Column index of the last column on the range. (1 based) |
const |
level |
Integer |
Outline level. must be between 0 and 7. |
See also