1////////////////////////////////////////////////////////////////////////////////
2//
3//  ADOBE SYSTEMS INCORPORATED
4//  Copyright 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.scrollClasses
13{
14
15/**
16 *  The ScrollBarDirection class defines the values for the
17 *  <code>direction</code> property of the ScrollBar control.
18 *
19 *  @see mx.controls.scrollClasses.ScrollBar
20 *  @see mx.controls.HScrollBar
21 *  @see mx.controls.VScrollBar
22 *
23 *  @langversion 3.0
24 *  @playerversion Flash 9
25 *  @playerversion AIR 1.1
26 *  @productversion Flex 3
27 */
28public final class ScrollBarDirection
29{
30	include "../../core/Version.as";
31
32	//--------------------------------------------------------------------------
33	//
34	//  Class constants
35	//
36	//--------------------------------------------------------------------------
37
38	/**
39	 *  Specifies that a ScrollBar control is for horizontal scrolling.
40	 *
41	 *  @langversion 3.0
42	 *  @playerversion Flash 9
43	 *  @playerversion AIR 1.1
44	 *  @productversion Flex 3
45	 */
46	public static const HORIZONTAL:String = "horizontal";
47
48	/**
49	 *  Specifies that a ScrollBar control is for vertical scrolling.
50	 *
51	 *  @langversion 3.0
52	 *  @playerversion Flash 9
53	 *  @playerversion AIR 1.1
54	 *  @productversion Flex 3
55	 */
56	public static const VERTICAL:String = "vertical";
57}
58
59}
60