service TableValidation in module com::sun::star::sheet::

(Global Index)

Syntax

service TableValidation;

Description

the validation settings for a cell or cell range.

Exported Interfaces

com::sun::star::sheet::XSheetCondition

Description

represents a condition in conditional formats or validation.


com::sun::star::beans::XPropertySet

Description

provides information about and access to the properties from an implementation.


Property Summary

Type specifies the type of validation.

ShowInputMessage specifies if an input message is shown when the cursor is in a cell with these validation settings.

InputTitle specifies the title of the window showing the input message.

InputMessage specifies the text of the input message.

ShowErrorMessage specifies if an error message is displayed when invalid data is entered.

ErrorTitle specifies the title of the window showing the error message.

ErrorMessage specifies the text of the error message.

IgnoreBlankCells specifies if blank cells should be allowed.

ErrorAlertStyle specifies the style of the error message.

Property Details



Type

Syntax

com::sun::star::sheet::ValidationType Type;

Description

specifies the type of validation.


ShowInputMessage

Syntax

boolean ShowInputMessage;

Description

specifies if an input message is shown when the cursor is in a cell with these validation settings.


InputTitle

Syntax

string InputTitle;

Description

specifies the title of the window showing the input message.

This is only used if TableValidation::ShowInputMessage is true .


InputMessage

Syntax

string InputMessage;

Description

specifies the text of the input message.

This is only used if TableValidation::ShowInputMessage is true .


ShowErrorMessage

Syntax

boolean ShowErrorMessage;

Description

specifies if an error message is displayed when invalid data is entered.


ErrorTitle

Syntax

string ErrorTitle;

Description

specifies the title of the window showing the error message.

This is only used if TableValidation::ShowErrorMessage is true .


ErrorMessage

Syntax

string ErrorMessage;

Description

specifies the text of the error message.

This is only used if TableValidation::ShowErrorMessage is true .


IgnoreBlankCells

Syntax

boolean IgnoreBlankCells;

Description

specifies if blank cells should be allowed.


ErrorAlertStyle

Syntax

com::sun::star::sheet::ValidationAlertStyle ErrorAlertStyle;

Description

specifies the style of the error message.

This is used only if TableValidation::ShowErrorMessage is true .

Top of Page