6.0

Table Of Contents
46
PlanetPress Talk Summary
3
Comparison Operators and Operator Functions
Conversion Operator Functions
Or
logical
operator &
function
Returns true if either or both specified expressions are true, false
otherwise.
XOr
logical
operator &
function
Returns true if only one of two specified expressions is true, false
otherwise.
Name: Type: Description:
>=
GE
operator
function
Compares two expressions of any type and returns true if the first is
greater than or equal to the second, false otherwise. This is the
functional equivalent to the >= operator.
>
GT
operator
function
Compares two expressions of any type and returns true if the first is
greater than the second, false otherwise. This is the functional
equivalent to the > operator.
<=
LE
operator
function
Compares two expressions of any type and returns true if the first is less
than or equal to the second, false otherwise. This is the functional
equivalent to the <= operator.
<
LT
operator
function
Compares two expressions of any type and returns true if the first is less
than the second, false otherwise. This is the functional equivalent to the
< operator.
=
Eq
operator
function
Compares two expressions of any type and returns true if both are equal,
false otherwise. This is the functional equivalent of the = operator.
<>
NE
operator
function
Compares two expressions of any type and returns true if they are not
equal, false otherwise. This is the functional equivalent to the <>
operator.
Name: Type: Description:
CurToStr
function Converts a currency expression into a string value.
FloatToInt
function Converts a measure expression into an integer value.
FloatToStr
function Converts a measure expression into a string value.
IntToFloat
function Converts an integer expression into a measure value.
IntToStr
function Converts an integer expression into a string value.
Name: Type: Description: