Compares two expressions of any type and returns true if they are not equal, false otherwise. This is the functional equivalent to the <> operator.
ne( expression1, expression2 ) Boolean value
expression1, expression2
Values of any type. Both expressions must be of the same type.
Examples 1 and 2 show both ways of comparing two expressions.
if( ne(¤t.line, 1) )
show('Not a new page')
endif()
if(¤t.line <> 1) %Same statement, using the <> operator
show('Not a new page')
endif()