CWnd::ModifyStyle
Call this member function to modify a window's style.
BOOL ModifyStyle( DWORD dwRemove, DWORD dwAdd, UINT nFlags = 0 );
Parameters
- dwRemove
-
Specifies window styles to be removed during style modification.
- dwAdd
-
Specifies window styles to be added during style modification.
- nFlags
-
Flags to be passed to SetWindowPos, or zero if SetWindowPos should not be called. The default is zero. See the Remarks section for a list of preset flags.
Styles to be added or removed can be combined by using the bitwise OR (|) operator. See the topics Window Styles and CreateWindow in the Platform SDK for information about the available window styles.
If nFlags is nonzero, ModifyStyle calls the Windows API function SetWindowPos and redraws the window by combining nFlags with the following four preset flags:
-
SWP_NOSIZE Retains the current size.
-
SWP_NOMOVE Retains the current position.
-
SWP_NOZORDER Retains the current Z order.
-
SWP_NOACTIVATE Does not activate the window.
To modify a window's extended styles, see ModifyStyleEx.
Note |
|---|
| For some styles in certain controls (the ES_READONLY style in the edit control, for example), ModifyStyle may not properly change the style because the control may need to perform special internal processing. In these cases, a corresponding message to change the style will be available (EM_SETREADONLY in the example mentioned). |
In other words, the return value only indicates whether or not the window's style needed to be changed from the value it already had.
- 7/16/2009
- SirBlack
Note