corelibraries-devexpress-dot-export-dot-xl-bd472aca.md
Lists the types of operators that can be used in certain data validation types.
Namespace : DevExpress.Export.Xl
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
public enum XlDataValidationOperator
Public Enum XlDataValidationOperator
| Name | Description |
|---|---|
Between |
Checks whether the cell value falls within a specified range of values.
|
| NotBetween |
Checks whether the cell value does not fall with a specified range of values.
|
| Equal |
Checks whether the cell value equals a specified value.
|
| NotEqual |
Checks whether the cell value is not equal to a specified value.
|
| LessThan |
Checks whether the cell value is less than a specified value.
|
| LessThanOrEqual |
Checks whether the cell values is less than or equal to a specified value.
|
| GreaterThan |
Checks whether the cell value is greater than a specified value.
|
| GreaterThanOrEqual |
Checks whether the cell value is greater than or equal to a specified value.
|
The following properties accept/return XlDataValidationOperator values:
The XlDataValidation.Operator property uses values listed by the XlDataValidationOperator enumeration.
See Also