AlignMode.as
1.08 KB
/**
* VERSION: 1.01
* DATE: 2010-02-03
* AS3
* UPDATES AND DOCUMENTATION AT: http://blog.greensock.com/
**/
package com.greensock.layout {
/**
* Provides constants for defining the alignment of objects. <br /><br />
*
* <b>Copyright 2010, GreenSock. All rights reserved.</b> This work is subject to the terms in <a href="http://www.greensock.com/terms_of_use.html">http://www.greensock.com/terms_of_use.html</a> or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership.
*
* @author Jack Doyle, jack@greensock.com
*/
public class AlignMode {
/** Align with the top of the area. **/
public static const TOP:String = "top";
/** Align with the center of the area. **/
public static const CENTER:String = "center";
/** Align with the right side of the area. **/
public static const RIGHT:String = "right";
/** Align with the left side of the area. **/
public static const LEFT:String = "left";
/** Align with the bottom of the area. **/
public static const BOTTOM:String = "bottom";
}
}