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
C#
public enum TextFilterRelation

Members

HasValue0 text is present in the field(s) to search
IsEmpty1 no text is present in the field(s) to search
Equal2 the text in the field(s) to search equals the given value
NotEqual3 the text in the field(s) to search differs the given value
Greater4 the text in the field(s) to search is greater than the given value
LessOrEqual5 the text in the field(s) to search is less than or equal to the given value
Less6 the text in the field(s) to search is less than the given value
GreaterOrEqual7 the text in the field(s) to search is greater as or equal to the given value
Contains8 the text in the field(s) to search contains the given value
DoesNotContain9 the text in the field(s) to search does not contains the given value
StartsWith10 the text in the field(s) to search starts with the given value
DoesNotStartWith11 the text in the field(s) to search does not start with the given value
EndsWith12 the text in the field(s) to search ends with the given value
DoesNotEndWith13 the text in the field(s) to search does not end with the given value
MatchRegex14 the text in the field(s) to search matches the regular expression given
DoesNotMatchRegex15 the text in the field(s) to search does not match the regular expression given

See Also