Initial Release 5.0

Data Type : Rich Text

COLOR_VALUE - Components defining Color.
----------------------------------------------------------------------------------------------------------

#include <colorods.h>

Definition :

typedef struct {
WORD Flags;
BYTE Component1;
BYTE Component2;
BYTE Component3;
BYTE Component4;


/* RGB color space
* Component1 = red;
* Component2 = green;
* Component3 = blue;
* Component4 = unused;
*/
} COLOR_VALUE;



Description :

This data structure defines the three components of an RGB color which consist of a red, green, and blue color value.
See Also :

COLOR_VALUE_FLAGS_xxx
----------------------------------------------------------------------------------------------------------