System.FixedInt

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type FixedInt = Integer;

Properties

Type Visibility Source Unit Parent
type public System.pas System System

Description

Defines a 32-bit signed integer type.

The size of FixedInt is 32 bits across all 64-bit and 32-bit platforms. The range for the FixedInt type is from -2147483648 through 2147483647.

  • On Windows platforms (32-bit and 64-bit Windows), FixedInt is equivalent to the LongInt type.
  • On OSX32, 32-bit iOS, 64-bit iOS, and Android platforms, FixedInt is equivalent to the Integer type.

See Also