TrueString: String;
The TrueString method returns logical True converted into string type.
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