35 lines
893 B
ActionScript
Executable File
35 lines
893 B
ActionScript
Executable File
/*
|
|
Copyright (c) 2009 Yahoo! Inc. All rights reserved.
|
|
The copyrights embodied in the content of this file are licensed under the BSD (revised) open source license
|
|
*/
|
|
package com.yahoo.astra.layout.modes
|
|
{
|
|
/**
|
|
* A set of constants for vertical alignment values used by
|
|
* the layout engine.
|
|
*
|
|
* @author Josh Tynjala
|
|
*/
|
|
public class VerticalAlignment
|
|
{
|
|
|
|
//--------------------------------------
|
|
// Static Properties
|
|
//--------------------------------------
|
|
|
|
/**
|
|
* Items will be aligned to the top of the available bounds.
|
|
*/
|
|
public static const TOP:String = "top";
|
|
|
|
/**
|
|
* Items will be aligned to the middle of the available bounds.
|
|
*/
|
|
public static const MIDDLE:String = "middle";
|
|
|
|
/**
|
|
* Items will be aligned to the bottom of the available bounds.
|
|
*/
|
|
public static const BOTTOM:String = "bottom";
|
|
}
|
|
} |