Constants which specify the text comparison method applied when evaluating a format condition.

Enumeration Members

BeginsWith: 0

The string being evaluated must begin with the value to which it is being compared in order for the condition to be met.

Contains: 2

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.

DoesNotContain: 3

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.

EndsWith: 1

The string being evaluated must end with the value to which it is being compared in order for the condition to be met.