ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
fl.controls 

ScrollPolicy  - AS3 Flash

Packagefl.controls
Classpublic class ScrollPolicy
InheritanceScrollPolicy Inheritance Object

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

Values for the horizontalScrollPolicy and verticalScrollPolicy properties of the BaseScrollPane class.

Related API Elements



Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
Public Methods
 MethodDefined By
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined By
  AUTO : String = "auto"
[static] Show the scroll bar if the children exceed the owner's dimensions.
ScrollPolicy
  OFF : String = "off"
[static] Never show the scroll bar.
ScrollPolicy
  ON : String = "on"
[static] Always show the scroll bar.
ScrollPolicy
Constant Detail

AUTO

Constant
public static const AUTO:String = "auto"

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

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.

OFF

Constant 
public static const OFF:String = "off"

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

Never show the scroll bar.

ON

Constant 
public static const ON:String = "on"

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

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.