Table of Contents

TExcelFile.GetCellVisibleFormat Method

Overloads

TExcelFile.GetCellVisibleFormat(Integer, Integer)

Cell Format for a given cell, including the format of the row and the column.

Remarks

This might return format even if the cell is empty, if the column or the row have format. For the real format of the cell, see GetCellFormat(Integer, Integer)

Syntax

Unit: FlexCel.Core

function TExcelFile.GetCellVisibleFormat(const row: Integer; const col: Integer): Integer; overload;

Parameters

<-> Parameter Type Description
const row Integer Row Index (1 based)
const col Integer Column Index (1 based)

Returns

XF for the cell

See also

TExcelFile.GetCellVisibleFormat(Integer, Integer, Integer)

Cell Format for a given cell, including the format of the row and the column.

Remarks

This might return format even if the cell is empty, if the column or the row have format. For the real format of the cell, see GetCellFormat(Integer, Integer)

Syntax

Unit: FlexCel.Core

function TExcelFile.GetCellVisibleFormat(const sheet: Integer; const row: Integer; const col: Integer): Integer; overload;

Parameters

<-> Parameter Type Description
const sheet Integer Sheet index (1 based)
const row Integer Row Index (1 based)
const col Integer Column Index (1 based)

Returns

XF for the cell

See also