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.sliderClasses
13{
14
15/**
16 *  The SliderDirection class defines the constant values
17 *  for the <code>direction</code> property of the Slider class.
18 *
19 *  @see mx.controls.sliderClasses.Slider
20 */
21public final class SliderDirection
22{
23	include "../../core/Version.as";
24
25	//--------------------------------------------------------------------------
26	//
27	//  Class constants
28	//
29	//--------------------------------------------------------------------------
30
31	/**
32	 *  Specifies to display a horizontal slider.
33	 *  The HSlider control uses this constant.
34	 */
35	public static const HORIZONTAL:String = "horizontal";
36
37	/**
38	 *  Specifies to display a vertical slider.
39	 *  The VSlider control uses this constant.
40	 */
41	public static const VERTICAL:String = "vertical";
42}
43
44}
45