Comparison type enumerations.
Namespace:
RightEdge.TriggersAssembly: Triggers (in Triggers.dll)
Version: 2008.1.0.0 (2008.1.0.0)
Syntax
| C# |
|---|
[FlagsAttribute] public enum CompType |
| Visual Basic (Declaration) |
|---|
<FlagsAttribute> _ Public Enumeration CompType |
| Visual C++ |
|---|
[FlagsAttribute] public enum class CompType |
Members
| Member name | Description | |
|---|---|---|
| Equals |
Indicates that the two values must be equal.
| |
| Greater |
Indicates that value 1 must be greater than value 2.
| |
| Less |
Indicates that value 1 must be less than value 2.
| |
| GreaterOrEquals |
Indicates that value 1 must be greater than or equal to value 2.
| |
| LessOrEquals |
Indicates that value 1 must be less than or equal to value 2.
| |
| NotEquals |
Indicates that value 1 must not equal value 2.
|