|
TAStatusbar |
Creates a status bar control
| Color | Background color of Panel(s) |
| Height | Height of status bar |
| Name | Name of control and of the variable that is assigned its handle in generated code. If not specified, no variable is generated . |
| Panels | If not SimplePanel, double-click to specify text for each Panel using the Panels editor |
| SimplePanel | If True, status bar is 1 panel, else several |
| SimpleText | Text for Simple status bar |
| Visible | {If False, generates GUICtrlSetState(-1, $GUI_HIDE) |
| SBARS_SIZEGRIP | Status bar continues to show when Form is resized |
| SBARS_TOOLTIPS | Show hints |
| WS_TABSTOP | Control can be selected with Tab and Shift+Tab |
| WS_HSCROLL | Control has horizontal scroll bar |
| WS_VSCROLL | Control has vertical scroll bar |
| WS_VISIBLE | Control is visible |
| WS_BORDER | Control has a thin-line border |
| WS_CLIPSIBLINGS | If this control overlaps with another, this control shows partially |
| WS_EX_CLIENTEDGE | Control has border with sunken edge |
| WS_EX_STATICEDGE | Control has a three-dimensional border |
Each panel has its own properties:
| Alignment | Alignment of text: taCenter,taLeftJustify, taRightJustify |
| Text | Text in panel |
| Width | Width of panel |
SBARS_SIZEGRIP: See example in AutoIt help | _GUICtrlStatusBar_Resize
SBARS_TOOLTIPS: Call _GUICtrlStatusBar_SetTipText to specify a hint for a Panel. It only shows when a Panel contains an icon or the text is too long for the Panel.
None