EnumFonts (Compact 2013)

3/28/2014

This function enumerates the fonts available on a specified device. This function is provided for compatibility with early versions of the Windows SDK. Whenever possible, applications should use the EnumFontFamilies function.

Syntax

int EnumFonts(
  HDC hdc, 
  LPCTSTR lpFaceName, 
  FONTENUMPROC lpFontFunc, 
  LPARAM lParam
); 

Parameters

  • hdc
    [in] Handle to the device context (DC).
  • lpFaceName
    [in] Long pointer to a null-terminated string that specifies the typeface name of the desired fonts. If lpFaceName is NULL, EnumFonts randomly selects and enumerates one font of each available typeface.
  • lpFontFunc
    [in] Long pointer to the application-defined callback function. For more information, see EnumFontsProc.
  • lParam
    [in] Pointer to any application-defined data. EnumFonts passes the data to the callback function along with the font information.

Return Value

The return value is the last value returned by the callback function. The application defines the meaning of the return value.

Remarks

Use EnumFontFamilies instead of EnumFonts. The EnumFontFamilies function differs from EnumFonts in that EnumFontFamilies retrieves the style names associated with a TrueType font. With EnumFontFamilies, you can retrieve information about font styles that you cannot enumerate using the EnumFonts function.

Windows Embedded Compact supports systems that use either TrueType or raster fonts, but not both. The OEM chooses the font type, raster or TrueType, at system design time, and an application cannot change the font type.

Requirements

Header

windows.h

Library

coredll.lib

See Also

Reference

Fonts Functions
EnumFontFamilies
EnumFontsProc
GetDeviceCaps