Module omix.api

Interface SpinBox

All Superinterfaces:
Accessory, IntegerTrigger, Member, Trigger
All Known Subinterfaces:
SpinBox, SpinBox

@Signal(int.class)
public interface SpinBox
extends IntegerTrigger
A SpinBox consists of a spinable input mask for real numbers.

SpinBox

The value change by user calls a method with an int parameter. Example:
SpinBox spinBox : method(int);
or
SpinBox spinBox : method(java.lang.Integer);
A SpinBox is disabled if maximum less or equals minimum. This occurs by default. Set at least maximum to enable SpinBox. Example:
spinBox.maximum = 100;
Author:
Dr. Peter Droste, Omix Visualization