enum FilterOperator in module com::sun::star::sheet::

(Global Index)

Syntax

enum FilterOperator;

Description

specifies the type of a single condition in a filter descriptor.

Values Summary

EMPTY selects empty entries.

NOT_EMPTY selects non-empty entries.

EQUAL value has to be equal to the specified value.

NOT_EQUAL value has to be unequal to the specified value.

GREATER value has to be greater than the specified value.

GREATER_EQUAL value has to be greater than or equal to the specified value.

LESS value has to be less than the specified value.

LESS_EQUAL value has to be less than or equal to the specified value.

TOP_VALUES selects a specified number of entries with the greatest values.

TOP_PERCENT selects a specified percentage of entries with the greatest values.

BOTTOM_VALUES selects a specified number of entries with the lowest values.

BOTTOM_PERCENT This selects a specified percentage of entries with the lowest values.

Values Details



EMPTY

Syntax

EMPTY,

Description

selects empty entries.


NOT_EMPTY

Syntax

NOT_EMPTY,

Description

selects non-empty entries.


EQUAL

Syntax

EQUAL,

Description

value has to be equal to the specified value.


NOT_EQUAL

Syntax

NOT_EQUAL,

Description

value has to be unequal to the specified value.


GREATER

Syntax

GREATER,

Description

value has to be greater than the specified value.


GREATER_EQUAL

Syntax

GREATER_EQUAL,

Description

value has to be greater than or equal to the specified value.


LESS

Syntax

LESS,

Description

value has to be less than the specified value.


LESS_EQUAL

Syntax

LESS_EQUAL,

Description

value has to be less than or equal to the specified value.


TOP_VALUES

Syntax

TOP_VALUES,

Description

selects a specified number of entries with the greatest values.


TOP_PERCENT

Syntax

TOP_PERCENT,

Description

selects a specified percentage of entries with the greatest values.


BOTTOM_VALUES

Syntax

BOTTOM_VALUES,

Description

selects a specified number of entries with the lowest values.


BOTTOM_PERCENT

Syntax

BOTTOM_PERCENT,

Description

This selects a specified percentage of entries with the lowest values.

Top of Page