Function : Font

FontSetColor - Sets the FONTID's Color byte to the color specified in the colorid argument.
----------------------------------------------------------------------------------------------------------

#include <fontid.h>

FONTID FontSetColor(
FONTID fontid,
BYTE colorid);

Description :

Sets the FONTID's Color byte to the color specified in the colorid argument. The colorid argument should be one of the values defined by NOTES_COLOR_xxx. Implemented as a macro:

#define FontSetColor(fontid,colorid) (((DWORD)(fontid) & ~BYTEMASK(FONT_COLOR_SHIFT)) | ((DWORD)(colorid)<<FONT_COLOR_SHIFT))

Parameters :

See Also :

FontGetColor
----------------------------------------------------------------------------------------------------------