You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/mfc/reference/ccolordialog-class.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ A `CColorDialog` object is a dialog box with a list of colors that are defined f
50
50
51
51
To construct a `CColorDialog` object, use the provided constructor or derive a new class and use your own custom constructor.
52
52
53
-
Once the dialog box has been constructed, you can set or modify any values in the [m_cc](#m_cc) structure to initialize the values of the dialog box's controls. The *m_cc* structure is of type [CHOOSECOLOR](/en-us/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1).
53
+
Once the dialog box has been constructed, you can set or modify any values in the [m_cc](#m_cc) structure to initialize the values of the dialog box's controls. The *m_cc* structure is of type [CHOOSECOLOR](/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1).
54
54
55
55
After initializing the dialog box's controls, call the `DoModal` member function to display the dialog box and allow the user to select a color. `DoModal` returns the user's selection of either the dialog box's OK (IDOK) or Cancel (IDCANCEL) button.
56
56
@@ -104,7 +104,7 @@ CColorDialog(
104
104
The default color selection. If no value is specified, the default is RGB(0,0,0) (black).
105
105
106
106
*dwFlags*<br/>
107
-
A set of flags that customize the function and appearance of the dialog box. For more information, see the [CHOOSECOLOR](/en-us/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1) structure in the Windows SDK.
107
+
A set of flags that customize the function and appearance of the dialog box. For more information, see the [CHOOSECOLOR](/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1) structure in the Windows SDK.
108
108
109
109
*pParentWnd*<br/>
110
110
A pointer to the dialog box's parent or owner window.
@@ -177,7 +177,7 @@ Each of the 16 RGB values in the returned array is initialized to RGB(255,255,25
177
177
178
178
## <aname="m_cc"></a> CColorDialog::m_cc
179
179
180
-
A structure of type [CHOOSECOLOR](/en-us/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1), whose members store the characteristics and values of the dialog box.
180
+
A structure of type [CHOOSECOLOR](/windows/win32/api/commdlg/ns-commdlg-choosecolora-r1), whose members store the characteristics and values of the dialog box.
0 commit comments