TAAvi |
Creates an avi control on the form.
Properties: | |
Align | This is a design only property and will not generate any code. It helps to keep controls alignment while editing. |
CommonAVI | This is special property. If this not set to aviNone, Koda will ignore FileName property and generate code for some standard system AVI's (Copy File, Delete Files etc). |
Cursor | This property define what cursor will be showed when mouse over the control. |
FileName | File name of AVI. This will be ignored if CommonAVI property is set. |
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. |
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. |
Resizing | This property define contol resizing. |
TabOrder | This property define in which order controls will be created. This is meaningful when you want switch between controls with Tab key. You also can use TabOrder Visual Editor. Tab order starts from 0. |
Visible | This is True by default. Set it to False to generate hidden control. This will add GUICtrlSetState(-1, $GUI_HIDE) line. |
None.
None.