Skip to main content

XlCondFmtRuleCellIs.Operator Property

Gets or sets the type of relational operator used in a conditional formatting rule.

Namespace: DevExpress.Export.Xl

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

NuGet Package: DevExpress.Printing.Core

Declaration

public XlCondFmtOperator Operator { get; set; }

Property Value

Type Description
XlCondFmtOperator

One of the XlCondFmtOperator enumeration values representing the operator type.

Available values:

Show 12 items
Name Description
BeginsWith

Format cells that begin with the specified text string.

Between

Format cells that are between two specified values.

ContainsText

Format cells that contains the specified text string.

EndsWith

Format cells that end with the specified text string.

Equal

Format cells whose values are equal to a specified value.

GreaterThan

Format cells whose values are greater than a specified value.

GreaterThanOrEqual

Format cells whose values are greater than or equal to a specified value.

LessThan

Format cells whose values are less than a specified value.

LessThanOrEqual

Format cell whose values are less than or equal to a specified value.

NotBetween

Formats cells that are not between two specified values.

NotContains

Format cells that do not contain the specified text string.

NotEqual

Format cells whose values are not equal to a specified value.

See Also