BooleanFormattedAsString |
Type | operator |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | <Operand> formatted as string
|
Associations | com.livecode.logic |
Summary | Formats a boolean value as a string
|
Parameters | Name | Type | Description |
---|
Operand | | An expression that evaluates to a boolean value.
|
|
Example | 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
|
Values | Name | Type | Description |
---|
return | | "true" or "false"
|
|
Description | Use BooleanFormattedAsString when you want to manipulate a boolean value as text.
|