Boolean data type
The boolean data type is used to hold values that can either be True or False.
Literals
A boolean value can be expressed as a literal using True
or False
in syntax.
Although redundant, a literal can be followed by a method in the same way a variable can. For example: True.ToText('yes','no')
Methods
Name | Description | Return type |
---|---|---|
ToText | Returns the equivalent text representation. | Text |