CFont::operator HFONT
使用本運算子的方式取得字型的 Windows GDI 控制代碼 CFont 附加至物件。
operator HFONT( ) const;
傳回值
Windows GDI 字型物件的控制代碼附加至 CFont ,如果成功,否則 NULL。
備註
因為這個運算子會從 CFont 的轉換會自動加入至 字型和文字使用,您可以傳遞至預期的 HFONT. 之函式的 CFont 物件。
如需使用圖形物件的詳細資訊,請參閱 Windows SDK圖形物件 。
範例
// The code fragment shows the usage of CFont::operator HFONT.
// Initialize a CFont object with the characteristics given
// in a LOGFONT structure.
LOGFONT lf;
// clear out structure
memset(&lf, 0, sizeof(LOGFONT));
// request a 12-pixel-height font
lf.lfHeight = 12;
// request a face name "Arial"
_tcsncpy_s(lf.lfFaceName, LF_FACESIZE, _T("Arial"), 7);
CFont font1;
font1.CreateFontIndirect(&lf); // create the font
// CFont::operator HFONT automatically converts font1 from
// CFont* to HFONT.
CFont* font2 = CFont::FromHandle(font1);
// Do something with the font just created...
CClientDC dc(this);
CFont* def_font = dc.SelectObject(font2);
dc.TextOut(5, 5, _T("Hello"), 5);
dc.SelectObject(def_font);
// Done with the font. Delete the font object.
font1.DeleteObject();
需求
Header: afxwin.h