CFontDialog::GetWeight
呼叫此函式以取得選取的字型粗細。
int GetWeight( ) const;
傳回值
選取字型的粗細。
備註
如需字型的濃淡程度的詳細資訊,請參閱 CFont::CreateFont。
範例
// Get the weight of the selected font, if any.
CFontDialog dlg;
if (dlg.DoModal() == IDOK)
{
int weight = dlg.GetWeight();
TRACE(_T("Weight of the selected font = %d\n"), weight);
}
需求
Header: afxdlgs.h