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

(Global Index)

Syntax

enum ValidationType;

Description

used to specify which cell contents are treated as valid.

Values Summary

ANY any cell content is valid; no conditions are used.

WHOLE any whole number matching the specified condition is valid.

DECIMAL any number matching the specified condition is valid.

DATE any date value matching the specified condition is valid.

TIME any time value matching the specified condition is valid.

TEXT_LEN string is valid if its length matches the specified condition.

LIST Only strings from a specified list are valid.

CUSTOM The specified formula detemines which contents are valid.

Values Details



ANY

Syntax

ANY,

Description

any cell content is valid; no conditions are used.


WHOLE

Syntax

WHOLE,

Description

any whole number matching the specified condition is valid.


DECIMAL

Syntax

DECIMAL,

Description

any number matching the specified condition is valid.


DATE

Syntax

DATE,

Description

any date value matching the specified condition is valid.


TIME

Syntax

TIME,

Description

any time value matching the specified condition is valid.


TEXT_LEN

Syntax

TEXT_LEN,

Description

string is valid if its length matches the specified condition.


LIST

Syntax

LIST,

Description

Only strings from a specified list are valid.


CUSTOM

Syntax

CUSTOM,

Description

The specified formula detemines which contents are valid.

Top of Page