CFont::GetLogFont
更新 : 2007 年 11 月
CFont の LOGFONT 構造体のコピーを取得します。
int GetLogFont(
LOGFONT * pLogFont
);
パラメータ
- pLogFont
フォントの情報を受け取る LOGFONT 構造体へのポインタ。
戻り値
正常終了した場合は 0 以外を返します。それ以外の場合は 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);
}
必要条件
ヘッダー : afxwin.h