Boolean.TrueString

Syntax

TrueString: String;

Description

The TrueString method returns logical True converted into string type.

Example

Sub Main;

Var

s: String;

Begin

s := Boolean.TrueString;

End Sub Main;

After executing the example the "s" variable will contain True.

See also:

Boolean