Table of Contents

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 = 10

Begins With. When the item is serialized out as XML, its value is "beginsWith".

Between = 6

Between. When the item is serialized out as XML, its value is "between".

ContainsText = 8

Contains. When the item is serialized out as XML, its value is "containsText".

EndsWith = 11

Ends With. When the item is serialized out as XML, its value is "endsWith".

Equal = 2

Equal. When the item is serialized out as XML, its value is "equal".

GreaterThan = 5

Greater Than. When the item is serialized out as XML, its value is "greaterThan".

GreaterThanOrEqual = 4

Greater Than Or Equal. When the item is serialized out as XML, its value is "greaterThanOrEqual".

LessThan = 0

Less Than. When the item is serialized out as XML, its value is "lessThan".

LessThanOrEqual = 1

Less Than Or Equal. When the item is serialized out as XML, its value is "lessThanOrEqual".

NotBetween = 7

Not Between. When the item is serialized out as XML, its value is "notBetween".

NotContains = 9

Does Not Contain. When the item is serialized out as XML, its value is "notContains".

NotEqual = 3

Not Equal. When the item is serialized out as XML, its value is "notEqual".