Function : Font
FontClearUnderline - Turns off the UNDERLINE attribute in the specified FONTID
#include <fontid.h>
FONTID FontClearUnderline(
FONTID fontid);
Implemented as a macro:
define FontClearUnderline(fontid) ((DWORD)(fontid) & ~(ISUNDERLINE <<
FONT_STYLE_SHIFT))
Parameters : Input : fontid - The FONTID in which to clear the UNDERLINE attribute.
Output : (routine) - The specified FONTID with the UNDERLINE attribute turned off.
See Also : FONTID FONTIDFIELDS FontIsUnderline FontSetUnderline