Top   Module   Use   Manual   Index 
 INCLUDED SERVICES | EXPORTED INTERFACES | PROPERTIES' SUMMARY | PROPERTIES' DETAILS 

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

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.

Properties' 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.

Properties' Details

Type
 
com::sun::star::sheet::ValidationType Type;
Description
specifies the type of validation.
ShowInputMessage
 
boolean ShowInputMessage;
Description
specifies if an input message is shown when the cursor is in a cell with these validation settings.
InputTitle
 
string InputTitle;
Description
specifies the title of the window showing the input message.

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

InputMessage
 
string InputMessage;
Description
specifies the text of the input message.

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

ShowErrorMessage
 
boolean ShowErrorMessage;
Description
specifies if an error message is displayed when invalid data is entered.
ErrorTitle
 
string ErrorTitle;
Description
specifies the title of the window showing the error message.

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

ErrorMessage
 
string ErrorMessage;
Description
specifies the text of the error message.

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

IgnoreBlankCells
 
boolean IgnoreBlankCells;
Description
specifies if blank cells should be allowed.
ErrorAlertStyle
 
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