GetCurrentFont是用來獲得當前選擇的CFont 對象的指針。
基本介紹
- 中文名:GetCurrentFont
- 類: CDC
- 功能:獲得當前選擇的CFont 對象的指針
- 語法:CFont *GetCurrentFont () const
介紹,示例,
介紹
類: CDC
頭檔案:
afxwin.h
功能:
獲得當前選擇的CFont 對象的指針。
語法:
CFont *GetCurrentFont () const;
返回值:
如果調用成功則返回CFont 對象的指針;否則返回NULL。
說明:
該函式返回臨時指針對象。
示例
/*************************************************
演示函式原型:CFont * pFont =pDC->GetCurrentFont ();
程式功能說明:獲得對象pDC當前選用字型的指針。
*************************************************/
//定義設備上下文對象指針
CDC * pDC;
//獲得當前選擇字型的指針
CFont * pFont =pDC->GetCurrentFont ();