次の方法で共有


CFont::GetLogFont

CFontLOGFONT の構造体のコピーを取得するには、この関数を呼び出します。

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);
}

必要条件

ヘッダー: afxwin.h

参照

関連項目

CFont クラス

階層図

LOGFONT

GetObject