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

ResizeMode  - AS3 Flex

Packagespark.components
Classpublic final class ResizeMode
InheritanceResizeMode Inheritance Object

Language Version: ActionScript 3.0
Product Version: Flex 4
Runtime Versions: Flash Player 10, AIR 1.5

The ResizeMode class defines an enumeration of the modes a component uses to resize its children in the dimensions specified by the layout system.

The component can change its own dimensions (width and height) and re-layout its children appropriately (this is the default resize mode).

An alternative option for the component is to change its scale, in which case the children don't need to change at all. This option is supported by Group.



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
  NO_SCALE : String = "noScale"
[static] Resizes by changing the width and height.
ResizeMode
  SCALE : String = "scale"
[static] Resizes by setting the scaleX and scaleY properties.
ResizeMode
Constant Detail

NO_SCALE

Constant
public static const NO_SCALE:String = "noScale"

Language Version: ActionScript 3.0
Product Version: Flex 4
Runtime Versions: Flash Player 10, AIR 1.5

Resizes by changing the width and height.

The component always sizes itself and then lays out its children at the actual size specified by the layout or the user.

SCALE

Constant 
public static const SCALE:String = "scale"

Language Version: ActionScript 3.0
Product Version: Flex 4
Runtime Versions: Flash Player 10, AIR 1.5

Resizes by setting the scaleX and scaleY properties.

The component always sizes itself and then lays out its children at its measured size. The scale is adjusted to match the specified size by the layout or the user.