Prev Next
PALETTEINDEX info Overview GroupThe PALETTEINDEX macro accepts an index to a logical-color palette entry and returns a palette-entry specifier consisting of a 32-bit COLORREF value that specifies the color associated with the given index. An application using a logical color palette can pass this specifier, instead of an explicit red, green, blue (RGB) value, to GDI functions that expect a color. This allows the function to use the color in the specified palette entry. COLORREF PALETTEINDEX(
Parameters
Return ValuesThe return value is a logical-palette index specifier. RemarksThe PALETTEINDEX macro is defined as follows: #define PALETTEINDEX(i) / ((COLORREF) (0x01000000 | (DWORD) (WORD) (i))) See Also
. |