Freigeben über


CFont::GetLogFont

Rufen Sie diese Funktion auf, um eine Kopie der LOGFONT-Struktur für CFont abzurufen.

int GetLogFont( 
   LOGFONT * pLogFont  
);

Parameter

  • pLogFont
    Zeiger auf die LOGFONT-Struktur, um die Schriftartinformationen zu erhalten.

Rückgabewert

ungleich 0 (null), wenn die Funktion erfolgreich ist; andernfalls 0.

Beispiel

// The code fragment shows how to retrieve a copy of the  
// LOGFONT structure for a currently selected font of a window.

CFont* pFont = pWnd->GetFont();
if (NULL != pFont)
{
   LOGFONT lf;
   pFont->GetLogFont(&lf);
   TRACE(_T("Typeface name of font = %s\n"), lf.lfFaceName);
}

Anforderungen

Header: afxwin.h

Siehe auch

Referenz

CFont-Klasse

Hierarchiediagramm

LOGFONT

GetObject