Click or drag to resize

Operator Enumeration

Operator used for a restriction

Namespace: Seal.Model
Assembly: SealLibrary (in SealLibrary.dll) Version: 10.0.1.0+a44cd3a7f03c2bf3cdbd971a878c679e40bed08a
Syntax
C#
public enum Operator
Members
Member nameValueDescription
Equal0 Equals one of the values
NotEqual1 Is different from the values
Greater2 Is greater than the value
GreaterEqual3 Is greater than or equal to the value
Smaller4 Is smaller than the value
SmallerEqual5 Is smaller than or equal to the value
Between6 Is between the two values
NotBetween7 Is not between the two values
Contains8 Contains the value
NotContains9 Does not contain the value
StartsWith10 Starts with the value
EndsWith11 Ends with the value
IsEmpty12 Is empty (empty string)
IsNotEmpty13 Is not empty (not an empty string)
IsNull14 Is Null
IsNotNull15 Is not Null
ValueOnly16 Value only: the prompted value is used directly without operator
ContainsAny17 Contains any of the values
NotContainsAny18 Does not contain any of the values
ContainsAll19 Contains all the values
NotContainsAll20 Does not contain all the values
See Also