Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WDESIGNER and version 24.0
Syntax
Code Block
languagenone
set aString = aBoolean.convertToString() 
set aString = convertToString(true|false)
SemanticsConverts boolean values to strings. The string is assigned either true or false.
SubstitutablesaBooleanCan be any variable or object attribute having the type Boolean.
Examples

Converts the value of the boolean variable b to a string having the value true or false.

Code Block
languagenone
set s1 = b.convertToString(); 

Assigns false to string s2.

Code Block
languagenone
set s2 = convertToString(false);