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);
}
必要条件
ヘッダー : afxdlgs.h