|
TAForm |
Form is creating when selecting menu New or pressing toolbar button New form.
| Properties: | |
| Caption | This property contains text that will be visible on form. |
| ClientHeight | Height of client area in pixels. |
| ClientWidth | Width of client area in pixels. |
| Color | This property define control background color. |
| ContextMenu | Allow to attach a ContextMenu to the control. ContextMenu must be created first. |
| Cursor | This property define what cursor will be showed when mouse over the control. |
| Description | Allowed to enter form description. This text is for informational use only, like in templates gallery. |
| Enabled | This is True by default. Set it to False to generate disabled control. This will add GUICtrlSetState(-1, $GUI_DISABLE) line. |
| Font | This property allow to set font properties - color, font face, size and bold/italic/underline/strikeout attributes. |
| Left,Top | Position of control relative to it's parent. |
| Width,Height | Size of control in pixels. |
| Hint | This property containing text that will appear when mouse cursor is over control. This will add GUICtrlSetTip(-1, "Your hint text") line. |
| Icon | Attach an icon that visible in the form caption. Open Picture editor. |
| Menu | Allow to attach a Menu to the form. Menu must be created first. |
| Name | Unique name of control, this defines the name of variable where control ID will be kept. It also can be empty, when no variable will be created. |
| OnClose OnMaximize OnMinimize OnRestore | Standard control event. |
| ParentForm | Place here name of other form (without $), that will act as parent for current form.Useful when creating child windows. |
| Picture | Assign an image to button. This disables caption, because AutoIt does not support both picture and text in a button. |
| Position | Form position: poDesigned - absolute position poDesktopCenter - in desktop center poFixed - generated form position independent from position of design window |
| Resizing | This property define contol resizing. |
| TrayMenu | Allow to attach a TrayMenu to the form. TrayMenu must be created first. |
| Visible | This is True by default. Set it to False to generate hidden control. This will add GUICtrlSetState(-1, $GUI_HIDE) line. |
None.
None.