ToBoolean()

For the given object, return back the boolean representation of the it. Possible Yes/true/1 for true

Usage

BOOLEAN = ToBoolean( object )
Argument Summary
object object to convert to a boolean type

Calling

Supports named-parameter calling allowing you to use the function like:

ToBoolean(
   object=?
);

Supports passing parameters as a structure using ArgumentCollection:

ToBoolean( ArgumentCollection={
   object : ?
} );