MinValue: Integer;
The MinValue property returns the minimum integer value.
Sub UserProc;
Var
i: Integer;
Begin
i := Integer.MinValue;
End Sub UserProc;
After executing the example the "i" variable contains the minimum value of the Integer type, that is, -2147483647.
See also: