[]
        
(Showing Draft Content)

FarPoint.Win.Spread.ConditionalStyleOperator

ConditionalStyleOperator Enum

Defines operators that are used to customize a ConditionalStyleInfo.

Namespace: FarPoint.Win.Spread
Assembly: FarPoint.Win.Spread.dll
Syntax
public enum ConditionalStyleOperator
Public Enum ConditionalStyleOperator

Fields

Name Description
Between

Indicates that the Value is in a range.

Contains

Indicates that the Value contains a value.

EndsWith

Indicates that the Value ends with a value.

Equals

Indicates that the Value is equal to the value.

GreaterThan

Indicates that the Value is greater than the value.

GreaterThanOrEquals

Indicates that the Value is greater than or equal to the value.

IsEmpty

Indicates that the Value is null or DBNull.Value or String.Empty.

IsFalse

Indicates that the Value is false.

IsMatch

Indicates that the Value matches a regular expression.

IsNotEmpty

Indicates that the Value is not null or DBNull.Value or String.Empty.

IsNotMatch

Indicates that the Value does not match a regular expression.

IsNotNull

Indicates that the Value is not null or DBNull.Value.

IsNull

Indicates that the Value is null or DBNull.Value.

IsTrue

Indicates that the Value is true.

LessThan

Indicates that the Value is less than the value.

LessThanOrEquals

Indicates that the Value is less than or equal to the value.

NotBetween

Indicates that the Value is out of range.

NotEquals

Indicates that the Value is not equal to the value.

StartsWith

Indicates that the Value starts with a value.

See Also