Integer.MinValue

Syntax

MinValue: Integer;

Description

The MinValue property returns the minimum integer value.

Example

Sub Main;

Var

i: Integer;

Begin

i := Integer.MinValue;

End Sub Main;

After executing the example the "i" variable will contain the minimum value of the Integer type, that is, -2147483647.

See also:

Integer