CFontDialog::GetFaceName
调用该函数检索选定的字体的文本名称。
CString GetFaceName( ) const;
返回值
在 CFontDialog 对话框中选择的字体的文本名称。
示例
// Get the face name of the selected font, if any.
CFontDialog dlg;
if (dlg.DoModal() == IDOK)
{
CString facename = dlg.GetFaceName();
TRACE(_T("Face name of the selected font = %s\n"), facename);
}
要求
Header: afxdlgs.h