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

(Global Index)

Syntax

enum ConditionOperator;

Description

is used to specify the type of XSheetCondition .

Values Summary

NONE no condition is specified.

EQUAL value has to be equal to the specified value.

NOT_EQUAL the value must not be equal to the specified value.

GREATER the value has to be greater than the specified value.

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

LESS the value has to be less than the specified value.

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

BETWEEN the value has to be between the two specified values.

NOT_BETWEEN the value has to be outside of the two specified values.

FORMULA the specified formula has to give a non-zero result.

Values Details



NONE

Syntax

NONE,

Description

no condition is specified.


EQUAL

Syntax

EQUAL,

Description

value has to be equal to the specified value.


NOT_EQUAL

Syntax

NOT_EQUAL,

Description

the value must not be equal to the specified value.


GREATER

Syntax

GREATER,

Description

the value has to be greater than the specified value.


GREATER_EQUAL

Syntax

GREATER_EQUAL,

Description

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


LESS

Syntax

LESS,

Description

the value has to be less than the specified value.


LESS_EQUAL

Syntax

LESS_EQUAL,

Description

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


BETWEEN

Syntax

BETWEEN,

Description

the value has to be between the two specified values.


NOT_BETWEEN

Syntax

NOT_BETWEEN,

Description

the value has to be outside of the two specified values.


FORMULA

Syntax

FORMULA,

Description

the specified formula has to give a non-zero result.

Top of Page