package openfl.display {
	
	
	/**
	 * @externs
	 * The StageAlign class provides constant values to use for the
	 * `Stage.align` property.
	 */
	final public class StageAlign {
		
		/**
		 * Specifies that the Stage is aligned at the bottom.
		 */
		public static const BOTTOM:String = "bottom";
		
		/**
		 * Specifies that the Stage is aligned on the left.
		 */
		public static const BOTTOM_LEFT:String = "bottomLeft";
		
		/**
		 * Specifies that the Stage is aligned to the right.
		 */
		public static const BOTTOM_RIGHT:String = "bottomRight";
		
		/**
		 * Specifies that the Stage is aligned on the left.
		 */
		public static const LEFT:String = "left";
		
		/**
		 * Specifies that the Stage is aligned to the right.
		 */
		public static const RIGHT:String = "right";
		
		/**
		 * Specifies that the Stage is aligned at the top.
		 */
		public static const TOP:String = "top";
		
		/**
		 * Specifies that the Stage is aligned on the left.
		 */
		public static const TOP_LEFT:String = "topLeft";
		
		/**
		 * Specifies that the Stage is aligned to the right.
		 */
		public static const TOP_RIGHT:String = "topRight";
		
		
	}
	
	
}