Minimum requirements for a scroll bar to be usable with subclasses of the BaseScrollContainer component.

Available since

1.0.0

.

Variables

page:Float

The amount the scroll bar value must change to get from one "page" to the next.

Available since

1.0.0

.

step:Float

The amount the value must change to increment or decrement by a "step".

Available since

1.0.0

.

Inherited Variables

Defined by IRange

maximum:Float

The maximum numeric value of the range.

The following example sets the range of acceptable values and updates the current value:

range.minimum = 0.0;
range.maximum = 100.0;
range.value = 50.0;
Available since

1.0.0

.

minimum:Float

The minimum numeric value of the range.

The following example sets the range of acceptable values:

range.minimum = 0.0;
range.maximum = 100.0;
Available since

1.0.0

.

value:Float

The current numeric value of the range.

The following example sets the range of acceptable values:

range.minimum = 0.0;
range.maximum = 100.0;
Available since

1.0.0

.

Defined by IUIControl

enabled:Bool

Indicates whether the control should respond when a user attempts to interact with it. The appearance of the control may also be affected by whether the control is enabled or disabled.

The following example disables a component:

component.enabled = false;
Available since

1.0.0

.

Inherited Methods

Defined by IUIControl

initializeNow ():Void

If the component has not yet initialized, initializes immediately. The FeathersEvent.INITIALIZE event will be dispatched. To both initialize and validate immediately, call validateNow() instead.

Available since

1.0.0

.