WM_STYLECHANGED (Windows CE 5.0)
This message is sent to a window after the SetWindowLong function has changed one or more of the window's styles.
WM_STYLECHANGED wStyleType=wParam;lpss=(LPSTYLESTRUCT)lParam;
Parameters
- wStyleType
Specifies whether the window's styles or extended styles have changed. It is a combination of the following values.Value Description GWL_EXSTYLE The window's extended styles have changed. GWL_STYLE The window's styles have changed. - lpss
Long pointer to a STYLESTRUCT structure that contains the new styles for the window. An application can examine the styles, but cannot change them.
Return Values
An application should return zero if it processes this message.
Requirements
OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.
See Also
SetWindowLong | STYLESTRUCT | Windows Messages
Send Feedback on this topic to the authors