Updown

TAUpdown

Creates an updown control on the form.

Properties:
ContextMenuAllow to attach a ContextMenu to the control. ContextMenu must be created first.
CursorThis property define what cursor will be showed when mouse over the control.
EnabledThis is True by default. Set it to False to generate disabled control. This will add GUICtrlSetState(-1, $GUI_DISABLE) line.
Left,TopPosition of control relative to it's parent.
Width,HeightSize of control in pixels.
HintThis property containing text that will appear when mouse cursor is over control. This will add GUICtrlSetTip(-1, "Your hint text") line.
ItemsThis property contains control items list. This will open Graphic editor.
MaxMaximal value of control can change to.
MinMinimal value from what control will change.
NameUnique 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.
OnChangeStandard control event.
PositionCurrent position of control.
ResizingThis property define contol resizing.

Remarks:

Updown will not generate any code until it is attached to an Input control.

Related:

None.