FalseString: String;
The FalseString method returns logical False converted into string type.
Sub Main;
Var
s: String;
Begin
s := Boolean.FalseString;
End Sub Main;
After executing the example the "s" variable will contain False.
See also:
Boolean