Relational Operators

Operators that compare relationships

The relational operators perform comparisons between the values of two 
operands. Each operator returns a boolean result that is true (-1) if the 
relationship holds true, or false (0) if not.

KeyPgOpEqualOperator = (Equal)
	Compares the equal relation of two operands.
KeyPgOpNotEqualOperator <> (Not Equal)
	Compares the inequality relation of two operands.
KeyPgOpLessThanOperator < (Less Than)
	Compares the less than relation of two operands.
KeyPgOpLessThanOrEqualOperator <= (Less Than Or Equal)
	Compares the less than or equal relation of two operands.
KeyPgOpGreaterThanOrEqualOperator >= (Greater Than Or Equal)
	Compares the greater than or equal relation of two operands.
KeyPgOpGreaterThanOperator > (Greater Than)
	Compares the greater than relation of two operands.
KeyPgOpIsOperator Is (Run-Time Type Information)
	Checks whether an object is of a certain type.

