Table of Contents

TXlsFile.HasAutoFilter Method

Overloads

TXlsFile.HasAutoFilter

Returns true if the active sheet has any AutoFilter defined.

Syntax

Unit: FlexCel.XlsAdapter

function TXlsFile.HasAutoFilter: Boolean; overload; override;

See also

TXlsFile.HasAutoFilter(Integer, Integer)

Returns true if a cell has an AutoFilter.

Syntax

Unit: FlexCel.XlsAdapter

function TXlsFile.HasAutoFilter(const row: Integer; const col: Integer): Boolean; overload; override;

Parameters

<-> Parameter Type Description
const row Integer Row of the cell we want to find out. (1 based)
const col Integer Column of the cell we want to find out. (1 based)

Returns

True if the cell has an AutoFilter, false otherwise.

See also