Skip to main content
A newer version of this page is available. .

XlDataValidation.Operator Property

Gets or sets the relational operator used in the data validation rule.

Namespace: DevExpress.Export.Xl

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

public XlDataValidationOperator Operator { get; set; }

Property Value

Type Description
XlDataValidationOperator

A XlDataValidationOperator enumeration values that specifies the relational operator.

Available values:

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.

See Also