ENUMLOGFONT

The ENUMLOGFONT structure defines the attributes of a font, the complete name of a font, and the style of a font.

typedef struct tagENUMLOGFONT { // elf 
    LOGFONT elfLogFont; 
    BCHAR    elfFullName[LF_FULLFACESIZE]; 
    BCHAR    elfStyle[LF_FACESIZE]; 
} ENUMLOGFONT; 
 

Members

elfLogFont
Specifies a LOGFONT structure that defines the attributes of a font.
elfFullName
Specifies a unique name for the font. For example, "ABCD Font Company TrueType Bold Italic Sans Serif".
elfStyle
Specifies the style of the font. For example, "Bold Italic".

QuickInfo

  Windows NT: Requires version 3.1 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Requires version 1.0 or later.
  Header: Declared in wingdi.h.
  Unicode: Defined as Unicode and ANSI structures.

See Also

Fonts and Text Overview, Font and Text Structures, EnumFontFamProc, LOGFONT