function RedComponent(Color32: TColor32): Integer;
Extracts the red component from the parameter.
This function is provided for convenience and backward compatibility only. In performance-critical parts of your code use TColor32Entry typecasting or direct conversion:
Red := (Color32 and $00FF0000) shr 16;
[See Also] AlphaComponent, GreenComponent, BlueComponent