BooleanFormattedAsString
Type
operator
Summary
Formats a boolean value as a string
Syntax
<Operand> formatted as string
Description
Use BooleanFormattedAsString when you want to manipulate a boolean value as text.
Parameters
Name | Type | Description |
---|---|---|
Operand | An expression that evaluates to a boolean value. |
Examples
variable tString as String
variable tBool as Boolean
put (false is not not true) is false into tBool
put tBool formatted as string into tString -- tString contains "true"