| Package | de.mightypirates.asul.interfaces |
| Interface | public interface IScrollBar extends IAsulObject, flash.events.IEventDispatcher, IDisposable |
| Implementors | ScrollBar |
ScrollBar class.
| Property | Defined by | ||
|---|---|---|---|
![]() | clipChildren : Boolean
Clip children of this element (true) or not (false).
| IAsulObject | |
| intValue : uint
The value displayed by the bar as an integer value.
| IScrollBar | ||
| isEnabled : Boolean
Whether the scrollbar is enabled or not.
| IScrollBar | ||
![]() | maxHeight : Number
The maximum height of this object.
| IAsulObject | |
| maximum : uint
The maximum integer value displayed by the bar.
| IScrollBar | ||
![]() | maxWidth : Number
The maximum width of this object.
| IAsulObject | |
![]() | minHeight : Number
The minimum height of this object.
| IAsulObject | |
![]() | minWidth : Number
The minimum width of this object.
| IAsulObject | |
![]() | name : String
The name of this object.
| IAsulObject | |
![]() | style : Array
A list of style names applicant to this object.
| IAsulObject | |
![]() | tagname : String
The XML tagname of the element, e.g.
| IAsulObject | |
| value : Number
The value displayed by the bar.
| IScrollBar | ||
| intValue | property |
intValue:uint [read-write]The value displayed by the bar as an integer value.
This is the interpolated position of the slider from left to right or top to bottom. I.e. a value of 0 means at the very left / top end, a value of maximum means at the very bottom or right end.
Implementation public function get intValue():uint
public function set intValue(value:uint):void
| isEnabled | property |
isEnabled:Boolean [read-write]Whether the scrollbar is enabled or not.
If the scrollbar is disabled, the scroll handle is removed (if it exists in the first place), and added again when enabled.
Implementation public function get isEnabled():Boolean
public function set isEnabled(value:Boolean):void
| maximum | property |
maximum:uint [read-write]The maximum integer value displayed by the bar.
Implementation public function get maximum():uint
public function set maximum(value:uint):void
| value | property |
value:Number [read-write]The value displayed by the bar.
This is the interpolated position of the slider from left to right or top to bottom. I.e. a value of 0 means at the very left / top end, a value of 1 means at the very bottom or right end.
Implementation public function get value():Number
public function set value(value:Number):void