[]
Defines operators that are used to customize a ConditionalStyleInfo.
public enum ConditionalStyleOperator
Public Enum ConditionalStyleOperator
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 | |
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 | |
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. |