CFont::GetLogFont
呼叫此函式以取得 LOGFONT 結構的複本 CFont的。
int GetLogFont(
LOGFONT * pLogFont
);
參數
- pLogFont
要取得字型資訊的 LOGFONT 結構的指標。
傳回值
如果不是零,則函式成功,則為 0。
範例
// 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);
}
需求
Header: afxwin.h