Icon TColor

Unit: WebUI

TColor = type Integer

Available In: Client and Server Applications

The TColor type is an Integer type used to represent a 32-bit RGBA color. The components of the RGBA value are as follows:

ComponentDescription
RedThe blue component is stored in the lower 8 bits of the 32-bit RGBA value (0-7).
GreenThe green component is stored in the next 8 bits of the 32-bit RGBA value (8-15).
BlueThe red component is stored in the next 8 bits of the 32-bit RGBA value (16-23).
AlphaThe alpha (opacity) component is stored in the last 8 bits of the 32-bit RGBA value (24-31).
Image