System.Integer
Delphi
type Integer = -2147483648..2147483647;
C++
typedef int                  Integer;          // -2147483648..2147483647
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| type typedef | public | System.pas sysmac.h | System | System | 
Description
Represents a signed 32-bit integer type.
Integer represents a subset of the integer numbers. The range for the Integer type is from -2147483648 through 2147483647.
The size of Integer is 32 bits across all 64-bit and 32-bit platforms.