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