Integer.ToString

Syntax

ToString: String;

Description

The ToString property returns the value of the current variable converted into string type.

Example

Sub UserProc;
Var
    i: Integer;
    b: Boolean;
    s: String;
Begin
    i := 123;
    b := True;
    s := i.ToString + b.ToString;
End Sub UserProc;

After executing the example the "S" variable contains the 123True value.

See also:

Integer