(integer) May be used in conjunction with winclass or ctype to specify window-style flags. This is equivalent to the “dwStyle” parameter in the WIN32 API CreateWindowsEx() function (consult the Microsoft documentation for details). As with winclass, these flags are only practical if they affect the appearance or other characteristic of the control without changing the way it interacts with the application.
|
Symbol |
Value |
Description |
|
WS_VISIBLE |
&h10000000 |
|
|
WS_CHILD |
&h40000000 |
|
|
WS_OVERLAPPED |
&h00000000 |
|
|
WS_POPUP |
&h80000000 |
|
|
WS_CLIPSIBLINGS |
&h04000000 |
|
|
WS_CLIPCHILDREN |
&h02000000 |
|
|
WS_MAXIMIZE |
&h01000000 |
|
|
WS_CAPTION |
&h00C00000 |
|
|
WS_BORDER |
&h00800000 |
|
|
WS_DLGFRAME |
&h00400000 |
|
|
WS_SYSMENU |
&h00080000 |
|
|
WS_MINIMIZEBOX |
&h00020000 |
|
|
WS_MAXIMIZEBOX |
&h00010000 |
|