Table of Contents

TObjectManager.FilterEnabled Method

Overloads

TObjectManager.FilterEnabled(string)

Returns True if the named query filter is currently enabled for this manager.

Syntax

Unit: Aurelius.Engine.ObjectManager

function TObjectManager.FilterEnabled(const FilterName: string): Boolean; overload;

Parameters

<-> Parameter Type Description
const FilterName string The name of the filter to check.

Returns

True if the filter is enabled; False otherwise.

See also

TObjectManager.FilterEnabled(string, TEnabledFilter)

Returns True if the named query filter is currently enabled, and provides its configuration handle.

Syntax

Unit: Aurelius.Engine.ObjectManager

function TObjectManager.FilterEnabled(const FilterName: string; out EnabledFilter: TEnabledFilter): Boolean; overload;

Parameters

<-> Parameter Type Description
const FilterName string The name of the filter to check.
out EnabledFilter TEnabledFilter When the method returns True, receives the TEnabledFilter instance for the enabled filter; otherwise receives nil.

Returns

True if the filter is enabled; False otherwise.

See also