TextFilterRelation Enumeration
enumeration of filter relations used for SimpleFindObjects(UInt64, String, TextFilterRelation, SearchTextIn, Boolean)
Definition
Namespace: Articy.Api
Assembly: PublicApiTypes (in PublicApiTypes.dll) Version: 1.0.0
Assembly: PublicApiTypes (in PublicApiTypes.dll) Version: 1.0.0
C#
public enum TextFilterRelationMembers
| HasValue | 0 | text is present in the field(s) to search |
| IsEmpty | 1 | no text is present in the field(s) to search |
| Equal | 2 | the text in the field(s) to search equals the given value |
| NotEqual | 3 | the text in the field(s) to search differs the given value |
| Greater | 4 | the text in the field(s) to search is greater than the given value |
| LessOrEqual | 5 | the text in the field(s) to search is less than or equal to the given value |
| Less | 6 | the text in the field(s) to search is less than the given value |
| GreaterOrEqual | 7 | the text in the field(s) to search is greater as or equal to the given value |
| Contains | 8 | the text in the field(s) to search contains the given value |
| DoesNotContain | 9 | the text in the field(s) to search does not contains the given value |
| StartsWith | 10 | the text in the field(s) to search starts with the given value |
| DoesNotStartWith | 11 | the text in the field(s) to search does not start with the given value |
| EndsWith | 12 | the text in the field(s) to search ends with the given value |
| DoesNotEndWith | 13 | the text in the field(s) to search does not end with the given value |
| MatchRegex | 14 | the text in the field(s) to search matches the regular expression given |
| DoesNotMatchRegex | 15 | the text in the field(s) to search does not match the regular expression given |