|
Global extended control styles help
Global extended control styles are the extra styles used by most Max WinAPI controls.
Styles:
WS_EX_ACCEPTFILES - The control accepts drag-drop files.
WS_EX_CLIENTEDGE - The control has a border with a sunken edge.
This creates the typical blue border always used on edit controls.
WS_EX_LAYOUTRTL - For Arabic and Hebrew versions of Windows.
The horizontal orgin of the control is on the right.
WS_EX_LEFT - Default - The control has left-aligned properties
WS_EX_RIGHT - The control has right-aligned properties
This style has an effect only if the shell language is Hebrew, Arabic, or another language that supports reading-order alignment; otherwise, the style is ignored.
WS_EX_STATICEDGE - The control has a three-dimensional border style intended to be used for items that do not accept user input.
WS_EX_WINDOWEDGE - The control has a border with a raised edge.
|
|
|
|