1////////////////////////////////////////////////////////////////////////////////
2//
3//  ADOBE SYSTEMS INCORPORATED
4//  Copyright 2008 Adobe Systems Incorporated
5//  All Rights Reserved.
6//
7//  NOTICE: Adobe permits you to use, modify, and distribute this file
8//  in accordance with the terms of the license agreement accompanying it.
9//
10////////////////////////////////////////////////////////////////////////////////
11
12package spark.layouts
13{
14
15/**
16 *  The RowAlign class defines the possible values for the
17 *  <code>rowAlign</code> property of the TileLayout class.
18 *
19 *  @see TileLayout#rowAlign
20 *
21 *  @langversion 3.0
22 *  @playerversion Flash 10
23 *  @playerversion AIR 1.5
24 *  @productversion Flex 4
25 */
26public final class RowAlign
27{
28    /**
29     *  Do not justify the rows.
30     *
31     *  @langversion 3.0
32     *  @playerversion Flash 10
33     *  @playerversion AIR 1.5
34     *  @productversion Flex 4
35     */
36    public static const TOP:String = "top";
37
38    /**
39     *  Justify the rows by increasing the vertical gap.
40     *
41     *  @langversion 3.0
42     *  @playerversion Flash 10
43     *  @playerversion AIR 1.5
44     *  @productversion Flex 4
45     */
46    public static const JUSTIFY_USING_GAP:String = "justifyUsingGap";
47
48    /**
49     *  Justify the rows by increasing the row height.
50     *
51     *  @langversion 3.0
52     *  @playerversion Flash 10
53     *  @playerversion AIR 1.5
54     *  @productversion Flex 4
55     */
56    public static const JUSTIFY_USING_HEIGHT:String = "justifyUsingHeight";
57}
58}
59