Boolean.TrueString

Syntax

TrueString: String;

Description

The TrueString method returns logical True converted into string type.

Example

Sub UserProc;
Var
    s: String;
Begin
    s := Boolean.TrueString;
End Sub UserProc;

After executing the example the "s" variable contains the True value.

See also:

Boolean