|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
WM_STYLECHANGING
The WM_STYLECHANGING message is sent to a window when the SetWindowLong function is about to change one or more of the window's styles.
WM_STYLECHANGING
wStyleType = wParam; // extended or nonextended styles
lpss = (LPSTYLESTRUCT) lParam; // structure containing new styles
Parameters
wStyleType
Value of wParam. Specifies whether the window's extended or nonextended styles have changed.
This parameter can be a combination of the following values:
Value
| Meaning
| GWL_EXSTYLE
| The window's extended styles are changing.
| GWL_STYLE
| The window's nonextended styles are changing.
|
lpss
Value of lParam. Points to a STYLESTRUCT structure that contains the proposed new styles for the window. An
application can examine the styles and, if necessary, change them.
Return Values
An application should return zero if it processes this message.
See Also
STYLESTRUCT, WM_STYLECHANGED
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|