BoolToStr |
Top Previous Next |
Prototype
StrOutput:= BoolToStr(boolean)
Description
It converts a boolean variable in a string (true/false)
Parameters boolean: boolean variable to be converted in string
Returned Value
StrOutput: the boolean variable converted in string.
Notes
None.
Example
//It initializes boolean variable BoolVar:=TRUE;
//It logs variable value ApplicationLog('The variable value is: '+BoolToStr(BoolVar));
|