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