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

请参见

参考

CFontDialog选件类

层次结构图

CFontDialog::GetCurrentFont

CFontDialog::IsBold