Boolean.FalseString

Syntax

FalseString: String;

Description

The FalseString method returns logical False converted into string type.

Example

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

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

See also:

Boolean