CitectVBA Relational Operators are used in CitectVBA statements to compare the relationship between operands (values positioned immediately on either side of the Relational Operator). The boolean result is either True or False. .
Operator |
Function |
Usage |
---|---|---|
< |
Less than |
X < Y |
<= |
Less than or equal to |
X <= Y |
= |
Equals |
X = Y |
>= |
Greater than or equal to |
X >= Y |
> |
Greater than |
X > Y |
<> |
Not equal to |
X <> Y |
See Also