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.controls
13{
14
15/**
16 *  The ProgressBarDirection class defines the values
17 *  for the <code>direction</code> property of the ProgressBar class.
18 *
19 *  @see mx.controls.ProgressBar
20 */
21public final class ProgressBarDirection
22{
23	include "../core/Version.as";
24
25	//--------------------------------------------------------------------------
26	//
27	//  Class constants
28	//
29	//--------------------------------------------------------------------------
30
31	/**
32	 *  Specifies to fill the progress bar from the right to the left.
33	 */
34	public static const LEFT:String = "left";
35
36	/**
37	 *  Specifies to fill the progress bar from the left to the right.
38	 */
39	public static const RIGHT:String = "right";
40}
41
42}
43