CFont::GetLogFont
Wywołanie tej funkcji, aby pobrać kopię LOGFONT struktury dla CFont.
int GetLogFont(
LOGFONT * pLogFont
);
Parametry
- pLogFont
Wskaźnik do LOGFONT strukturę, aby otrzymać informacje dotyczące czcionek.
Wartość zwracana
Niezerowa, jeśli funkcja się powiedzie, inaczej 0.
Przykład
// 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);
}
Wymagania
Nagłówek: afxwin.h