[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'fpg_base' (#fpgui)

TFPColor

A record structure holding the RGBA values of a color.

Declaration

Source position: fpg_base.pas line 54

type TFPColor = record

  Red: Byte;

  Green: Byte;

  Blue: Byte;

  Alpha: Byte;

end;

Description

This is the same declaration as the one found in FPImage (included with the Free Pascal Compiler). Except the fpGUI version uses Byte values and not Word values. This is now marked as "deprecated". Please use TRGBTriple instead.