// Copyright 2007. Adobe Systems Incorporated. All Rights Reserved.
package fl.controls {
/**
* Values for the horizontalstudent_ar_fl_controls_ScrollPolicy
and verticalstudent_ar_fl_controls_ScrollPolicy
* properties of the BaseScrollPane class.
*
* @see fl.containers.BaseScrollPane#horizontalstudent_ar_fl_controls_ScrollPolicy BaseScrollPane.horizontalstudent_ar_fl_controls_ScrollPolicy
* @see fl.containers.BaseScrollPane#verticalstudent_ar_fl_controls_ScrollPolicy BaseScrollPane.verticalstudent_ar_fl_controls_ScrollPolicy
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public class student_ar_fl_controls_ScrollPolicy {
/**
* Always show the scroll bar. The size of the scroll bar is automatically
* added to the size of the owner's contents to determine the size of the
* owner if explicit sizes are not specified.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public static const ON:String = "on";
/**
* Show the scroll bar if the children exceed the owner's dimensions.
* The size of the owner is not adjusted to account for the scroll bars
* when they appear, so this may cause the scroll bar to obscure the contents
* of the component or container.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public static const AUTO:String = "auto";
/**
* Never show the scroll bar.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public static const OFF:String = "off";
}
}