次の方法で共有


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));
}

必要条件

ヘッダー : afxdlgs.h

参照

関連項目

CColorDialog クラス

階層図

CColorDialog::SetCurrentColor