Enum ConditionalFormattingOperator
- Namespace
- BigExcelCreator.Enums
- Assembly
- BigExcelCreator.dll
Conditional formatting operators for Excel conditional formatting rules. Wrapper for ConditionalFormattingOperatorValues to use on attributes.
public enum ConditionalFormattingOperator
Fields
BeginsWith = 10Begins With. When the item is serialized out as XML, its value is "beginsWith".
Between = 6Between. When the item is serialized out as XML, its value is "between".
ContainsText = 8Contains. When the item is serialized out as XML, its value is "containsText".
EndsWith = 11Ends With. When the item is serialized out as XML, its value is "endsWith".
Equal = 2Equal. When the item is serialized out as XML, its value is "equal".
GreaterThan = 5Greater Than. When the item is serialized out as XML, its value is "greaterThan".
GreaterThanOrEqual = 4Greater Than Or Equal. When the item is serialized out as XML, its value is "greaterThanOrEqual".
LessThan = 0Less Than. When the item is serialized out as XML, its value is "lessThan".
LessThanOrEqual = 1Less Than Or Equal. When the item is serialized out as XML, its value is "lessThanOrEqual".
NotBetween = 7Not Between. When the item is serialized out as XML, its value is "notBetween".
NotContains = 9Does Not Contain. When the item is serialized out as XML, its value is "notContains".
NotEqual = 3Not Equal. When the item is serialized out as XML, its value is "notEqual".