IDWriteGdiInterop::ConvertFontToLOGFONT Method

Initializes a LOGFONT structure based on the GDI-compatible properties of the specified font.

Syntax

virtual HRESULT ConvertFontToLOGFONT(
  IDWriteFont * font,
  [out]  LOGFONTW * logFont,
  [out]  BOOL * isSystemFont
) = 0;

Parameter

  • font
    An IDWriteFont object to be converted into a GDI-compatible LOGFONT structure.

  • logFont [out]
    When this method returns, contains a structure that receives a GDI-compatible font description.

  • isSystemFont [out]
    When this method returns, contains TRUE if the specified font object is part of the system font collection; otherwise, FALSE.

Rückgabewert

Ist Methode erfolgreich, wird "S_OK" zurückgegeben. Andernfalls wird ein HRESULT-Fehlercode zurückgegeben.

Hinweise

The conversion to a LOGFONT by using ConvertFontToLOGFONT operates at the logical font level and does not guarantee that it will map to a specific physical font. It is not guaranteed that GDI will select the same physical font for displaying text formatted by a LOGFONT as the IDWriteFont object that was converted.

Anforderungen

Mindestens unterstützter Client

Windows 7, Windows Vista with SP2 and Platform Update for Windows Vista

Mindestens unterstützter Server

Windows Server 2008 R2, Windows Server 2008 with SP2 and Platform Update for Windows Server 2008

Header

Dwrite.h

Bibliothek

Dwrite.lib

DLL

Dwrite.dll

Siehe auch

IDWriteGdiInterop