CFontDialog::GetCurrentFont
调用此函数分配当前选定的字体行为。LOGFONT 结构的成员。
void GetCurrentFont(
LPLOGFONT lplf
);
参数
- lplf
为 LOGFONT 结构的指针。
备注
其他 CFontDialog 成员函数提供给当前字体的访问各个属性。
在对 DoModal,将调用期间如果调用该函数时,它导致返回当前选定内容(支持用户在对话框中看到或已更改)。如果调用该函数时,在对 DoModal 的调用(,仅当 DoModal 返回 IDOK)后,它返回用户的实际上选择了。
示例
// Get the characteristics of the currently selected font, if any.
CFontDialog dlg;
if (dlg.DoModal() == IDOK)
{
LOGFONT lf;
dlg.GetCurrentFont(&lf);
TRACE(_T("Face name of the selected font = %s\n"), lf.lfFaceName);
}
要求
Header: afxdlgs.h