TextCompareOperatorEnum Enumeration |
Specifies possible operators for comparing text (used mostly in CMSFormControls/Filters/TextFilter control).
Namespace: CMS.HelpersAssembly: CMS.Helpers (in CMS.Helpers.dll) Version: 12.0.0
Syntax public enum TextCompareOperatorEnum
Members
| Member name | Value | Description |
---|
| Like | 0 |
Like/Contains
|
| NotLike | 1 |
Not like/Doesn't contain
|
| Equals | 2 |
Equals/=
|
| NotEquals | 3 |
Does not equal/!=
|
| StartsWith | 4 |
Starts with
|
| NotStartsWith | 5 |
Doesn't start with
|
| EndsWith | 6 |
Ends with
|
| NotEndsWith | 7 |
Does not end with
|
| Empty | 8 |
Is empty
|
| NotEmpty | 9 |
Is not empty
|
See Also