CFontDialog::IsBold
调用此函数确定选定的字体是否为粗体。
BOOL IsBold( ) const;
返回值
非零,如果选定的字体位置粗体属性启用;否则为0。
示例
// Is the selected font bold?
CFontDialog dlg;
if (dlg.DoModal() == IDOK)
{
BOOL bold = dlg.IsBold();
TRACE(_T("Is the selected font bold? %d\n"), bold);
}
要求
Header: afxdlgs.h