1////////////////////////////////////////////////////////////////////////////////
2//
3//  ADOBE SYSTEMS INCORPORATED
4//  Copyright 2005-2006 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 mx.containers
13{
14
15/**
16 *  The TileDirection class defines the constant values for the
17 *  <code>direction</code> property of the Tile container.
18 *
19 *  @see mx.containers.Tile
20 */
21public final class TileDirection
22{
23	include "../core/Version.as";
24
25	//--------------------------------------------------------------------------
26	//
27	//  Class constants
28	//
29	//--------------------------------------------------------------------------
30
31    /**
32	 *  Specifies that the children of the Tile container are laid out
33	 *  horizontally; that is, starting with the first row.
34     */
35    public static const HORIZONTAL:String = "horizontal";
36
37    /**
38	 *  Specifies that the children of the Tile container are laid out
39	 *  vertically; that is, starting with the first column.
40     */
41    public static const VERTICAL:String = "vertical";
42}
43
44}
45