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