scaffold.libs_as.feathers.controls.IDirectionalScrollBar.as Maven / Gradle / Ivy
/*
Feathers
Copyright 2012-2015 Bowler Hat LLC. All Rights Reserved.
This program is free software. You can redistribute and/or modify it in
accordance with the terms of the accompanying license agreement.
*/
package feathers.controls
{
/**
* A scroll bar that supports both horizontal or vertical orientations. The
* feathers.controls.Scroller
class (and all subclasses) will
* automatically set the direction
property when an
* IDirectionalScrollBar
is returned by its scroll bar
* factories.
*/
public interface IDirectionalScrollBar extends IScrollBar
{
/**
* The direction of the scroll bar, either horizontal or vertical.
*
* @see feathers.layout.Direction#HORIZONTAL
* @see feathers.layout.Direction#VERTICAL
*/
function get direction():String;
/**
* @private
*/
function set direction(value:String):void;
}
}