IsFloating Function

Top  Previous  Next

Returns TRUE if the expression is floating point. Use IsFloating  if you want to be sure that a value is floating.

 

Syntax

 

value = IsFloating( expression )

 

Parameters

expression

 

the expression to check

 

 

 

returns

 

true if the expression is a floating value

 

Examples

variableOne = "ABC"

 

IF IsFloating(variableOne) THEN

   print variableOne, " is floating."

ELSE

   print variableOne, " is NOT floating."

ENDIF

 

' This prints "ABC is NOT floating."