|
Global control styles help
Global control styles are the styles used by most Max WinAPI controls.
Styles:
WS_BORDER - The control has a thin border
WS_DLGFRAME - The control has a border typically used with dialog boxes.
WS_DISABLED - The control is disabled, the control cannot receive input from the user.
Use API_Control_Enable to enable the control again.
WS_GROUP - The control is the first member of a group of controls.
The group consists of this control with all the controls defined after it until another control uses the WS_GROUP style.
The user can jump from group to group if you define the WS_TABSTOP style with it.
WS_TABSTOP - The control can receive keyboard focus using the TAB key.
WS_MINIMIZE or WS_ICONIC - The control is minimized.
WS_MAXIMIZE - The control is maximized.
WS_HSCROLL - The control has a horizontal scroll bar.
WS_VSCROLL - The control has a vertical scroll bar.
WS_SIZEBOX or WS_THICKFRAME - The control can be resized by the user
|
|
|
|