CFontDialog::GetColor
调用该函数检索选定的字体。
COLORREF GetColor( ) const;
返回值
选定字体的颜色。
示例
// Get the color of the selected font, if any.
CFontDialog dlg;
if (dlg.DoModal() == IDOK)
{
COLORREF color = dlg.GetColor();
TRACE(_T("Color of the selected font = %8x\n"), color);
}
要求
Header: afxdlgs.h