Skip to content
Member Filters
Show Inherited
Show Protected
Show abstract
GR32🞂TColor32Type

TColor32

32-bit unsigned integer type representing an ARGB color value.

Declaration ​

pascal
type
  TColor32 = type Cardinal;
  PColor32 = ^TColor32;

Description ​

TColor32 is the primary pixel and color representation in Graphics32. It is a 32-bit unsigned cardinal integer formatted as $AARRGGBB in memory (or $AABBGGRR when RGBA_FORMAT is defined).

TypeDeclarationDescription
PColor32^TColor32Pointer to a single TColor32 color value.
PColor32Array^TColor32ArrayPointer to an un-sized array of TColor32 values.
TColor32Arrayarray [0..0] of TColor32Un-sized static array type used for scanline indexing.
TArrayOfColor32array of TColor32Dynamic array of TColor32 values.

See also ​