CColorDialog::GetColor
在调用 DoModal 以后检索有关颜色的信息调用此函数用户选定。
COLORREF GetColor( ) const;
返回值
包含颜色的RGB信息的 COLORREF 值在颜色对话框中选定的。
示例
// Get the selected color from the CColorDialog.
CColorDialog dlg;
if (dlg.DoModal() == IDOK)
{
COLORREF color = dlg.GetColor();
TRACE(_T("RGB value of the selected color - red = %u, ")
_T("green = %u, blue = %u\n"),
GetRValue(color), GetGValue(color), GetBValue(color));
}
要求
Header: afxdlgs.h