Boolean.FalseString

Syntax

FalseString: String;

Description

The FalseString method returns logical False converted into string type.

Example

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