BooleanFormattedAsString

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
<Operand> formatted as string
Associationscom.livecode.logic
Summary

Formats a boolean value as a string

Parameters
NameTypeDescription
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 -- tString contains "true"
Values
NameTypeDescription
return

"true" or "false"

Description

Use BooleanFormattedAsString when you want to manipulate a boolean value as text.