6.0

Table Of Contents
45
String Operator
Boolean Operator Functions
Sub
operator
function
Subtracts one expression from another. This is the functional equivalent
of the - operator.
*
Mul
operator
function
Multiplies two expressions. This is the functional equivalent of the *
operator.
/
Div
operator
function
Divides an expression with another. This is the functional equivalent to
the / operator.
Mod
function &
procedure
Returns the remainder resulting from the division of two numbers.
Neg
function Returns the negative value of the specified expression. This is the
functional equivalent to the - sign.
Cos
function Returns the cosine value of the specified angle.
Sin
function Returns the sine value of the specified angle.
Random
function Returns a measure value between 0 and 1, non-inclusive. Since this
function uses the current system time when run inside the printer, it
returns a true random value. On the computer, however, the function
uses the current data page as its seed to ensure the returned value is
constant when you navigate from page to page on your document.
Ceil
function Returns the smallest integer greater than or equal to the specified
measure value.
Name: Type: Description:
+
operator Either concatenates two or more strings or adds two numerical
expressions, depending on its context.
Name: Type: Description:
And
logical
operator &
function
Returns true if both specified expressions are true, otherwise it is false.
Not
logical
operator &
function
Negates the specified expression. Not to be confused with the neg
function: not is a Boolean operator function, not a mathematical one.
Name: Type: Description: