record TIntColorRec
Unit
PXL.Types
Declaration
type TIntColorRec = record
Description
Alternative representation of TIntColor, where each element can be accessed as an individual value. This can be safely typecast to TIntColor and vice-versa.
Overview
Fields
Description
Fields
Blue: Byte; |
|
Blue value ranging from 0 (no intensity) to 255 (fully intense).
|
Green: Byte; |
|
Green value ranging from 0 (no intensity) to 255 (fully intense).
|
Red: Byte; |
|
Red value ranging from 0 (no intensity) to 255 (fully intense).
|
Alpha: Byte; |
|
Alpha-channel value ranging from 0 (translucent) to 255 (opaque).
|
Values: packed[0..3] of Byte |
|
Values represented as an array, with indexes corresponding to blue (0), green (1), red (2) and alpha-channel (3).
|
Copyright © 2000 - 2017 Yuriy Kotsarenko. Help files generated by PasDoc.
|