ValidationModel
Overview
ValidationModel is a class in Aspose.Cells FOSS for Java.
Represents a data validation model in the Excel file.
This class provides 28 methods for working with ValidationModel objects in Java programs.
Available methods include: ValidationModel, getAlertStyle, getAreas, getErrorMessage, getErrorTitle, getFormula1, getFormula2, getIgnoreBlank, getInCellDropDown, getInputMessage, getInputTitle, getOperator, and 16 additional methods.
All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package.
Properties: alertStyle, areas, errorMessage, errorTitle, formula1, formula2, and 8 more.
Description
ValidationModel is a class in the Aspose.Cells FOSS library for Java that exposes 27 methods and 14 properties for programmatic use.
Core capabilities include: list<cellarea>; validationtype; validationalerttype. These operations enable developers to integrate validationmodel functionality directly into Java applications.
The class also provides the areas property (returns the areas), the type property (returns the type), the alertStyle property (returns the alert style).
Instances are created through a single constructor that initializes the object with default values.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
areas | List<CellArea> | Read | Returns the areas. |
type | ValidationType | Read | Returns the type. |
alertStyle | ValidationAlertType | Read | Returns the alert style. |
operator | OperatorType | Read | Returns the operator. |
formula1 | String | Read | Returns the formula 1. |
formula2 | String | Read | Returns the formula 2. |
ignoreBlank | boolean | Read | Returns the ignore blank. |
inCellDropDown | boolean | Read | Returns the in cell drop down. |
inputTitle | String | Read | Returns the input title. |
inputMessage | String | Read | Returns the input message. |
errorTitle | String | Read | Returns the error title. |
errorMessage | String | Read | Returns the error message. |
showInput | boolean | Read | Returns the show input. |
showError | boolean | Read | Returns the show error. |
Methods
| Signature | Description |
|---|---|
ValidationModel() | Initializes a new ValidationModel instance. |
getAreas() → List<CellArea> | Returns the areas. |
getType() → ValidationType | Returns the type. |
setType(type: ValidationType) | Sets the type. |
getAlertStyle() → ValidationAlertType | Returns the alert style. |
setAlertStyle(alertStyle: ValidationAlertType) | Sets the alert style. |
getOperator() → OperatorType | Returns the operator. |
setOperator(operator: OperatorType) | Sets the operator. |
getFormula1() → String | Returns the formula 1. |
setFormula1(formula1: String) | Sets the formula 1. |
getFormula2() → String | Returns the formula 2. |
setFormula2(formula2: String) | Sets the formula 2. |
getIgnoreBlank() → boolean | Returns the ignore blank. |
setIgnoreBlank(ignoreBlank: boolean) | Sets the ignore blank. |
getInCellDropDown() → boolean | Returns the in cell drop down. |
setInCellDropDown(inCellDropDown: boolean) | Sets the in cell drop down. |
getInputTitle() → String | Returns the input title. |
setInputTitle(inputTitle: String) | Sets the input title. |
getInputMessage() → String | Returns the input message. |
setInputMessage(inputMessage: String) | Sets the input message. |
getErrorTitle() → String | Returns the error title. |
setErrorTitle(errorTitle: String) | Sets the error title. |
getErrorMessage() → String | Returns the error message. |
setErrorMessage(errorMessage: String) | Sets the error message. |
getShowInput() → boolean | Returns the show input. |
setShowInput(showInput: boolean) | Sets the show input. |
getShowError() → boolean | Returns the show error. |
setShowError(showError: boolean) | Sets the show error. |