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