次の方法で共有


CFont::GetLogFont

CFontLOGFONT 構造体のコピーを取得します。

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

参照

参照

CFont クラス

階層図

LOGFONT

GetObject

その他の技術情報

CFont のメンバー