CFontDialog::GetStyleName
调用该函数检索选定的字体样式名称。
CString GetStyleName( ) const;
返回值
字体等样式名称。
示例
// Get the style name of the selected font, if any.
CFontDialog dlg;
dlg.m_cf.Flags |= CF_USESTYLE;
if (dlg.DoModal() == IDOK)
{
CString stylename = dlg.GetStyleName();
TRACE(_T("Style name of the selected font = %s\n"), stylename);
}
要求
Header: afxdlgs.h