1////////////////////////////////////////////////////////////////////////////////
2//
3// ADOBE SYSTEMS INCORPORATED
4// Copyright 2007-2010 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////////////////////////////////////////////////////////////////////////////////
11package flashx.textLayout.formats
12{
13	/**
14	 *  Defines values for the <code>blockProgression</code> property
15	 *  of the <code>TextLayouFormat</code> class. BlockProgression specifies the direction in
16	 *  which lines are placed in the container.
17	 *
18	 * @playerversion Flash 10
19	 * @playerversion AIR 1.5
20	 * @langversion 3.0
21	 *
22	 *  @see flashx.textLayout.formats.TextLayoutFormat#blockProgression TextLayoutFormat.blockProgression
23	 */
24
25	public final class BlockProgression
26	{
27		/**
28		 *  Specifies right to left block progression. Lines are laid out vertically starting at the right
29		 *  edge of the container and progressing leftward. Used for vertical text, for example, vertical
30		 *  Chinese or Japanese text.
31		 *
32		 * @playerversion Flash 10
33	 	 * @playerversion AIR 1.5
34	  	 * @langversion 3.0
35	 	 */
36
37		public static const RL:String = "rl";
38
39		/**
40		 *  Specifies top to bottom block progression. Lines are laid out horizontally starting at the top of
41		 *  the container and progressing down to the bottom. Used for horizontal text.
42		 *
43		 * @playerversion Flash 10
44	 	 * @playerversion AIR 1.5
45	  	 * @langversion 3.0
46	  	 */
47
48		public static const TB:String = "tb";
49	}
50}
51