Function : Font
FontIsBold - Returns TRUE if the specified FONTID has the BOLD attribute set, FALSE otherwise.
#include <fontid.h>
BOOL FontIsBold(
FONTID fontid);
Tests to see if the BOLD attribute is set in the specified FONTID. Implemented as a macro:
define FontIsBold(fontid) (((fontid) & ((DWORD) ISBOLD << FONT_STYLE_SHIFT))
!= 0)
Parameters : Input : fontid - The FONTID which is to be checked.
Output : (routine) - TRUE if the BOLD attribute is set, FALSE otherwise
See Also : FONTID FONTIDFIELDS FontSetBold FontClearBold