共用方式為


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

請參閱

參考

CFontDialog 類別

階層架構圖表

CFontDialog::GetCurrentFont