Function : Font

FontGetColor - Returns the value of the FONTID's Color byte.
----------------------------------------------------------------------------------------------------------

#include <fontid.h>

BYTE FontGetColor(
FONTID fontid);

Description :

Returns the value of the FONTID's Color byte. The value returned will be one of the values defined by NOTES_COLOR_xxx. Implemented as a macro:

#define FontGetColor(fontid) ((BYTE)(((fontid) >> FONT_COLOR_SHIFT) & 0xff))

Parameters :

See Also :

FONTID
----------------------------------------------------------------------------------------------------------