FormatConditionTextOperator
Constants which specify the text comparison method applied when evaluating a format condition.
Enumeration Members
Section titled "Enumeration Members"BeginsWith
Section titled "BeginsWith"The string being evaluated must begin with the value to which it is being compared in order for the condition to be met.
BeginsWith = 0 Contains
Section titled "Contains"The string being evaluated must match some part of the value to which it is being compared in order for the condition to be met.
Contains = 2 DoesNotContain
Section titled "DoesNotContain"Negates the [[FormatConditionTextOperator.contains]] value; the string being evaluated must not match any part of the value to which it is being compared in order for the condition to be met.
DoesNotContain = 3 EndsWith
Section titled "EndsWith"The string being evaluated must end with the value to which it is being compared in order for the condition to be met.
EndsWith = 1