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.events
13{
14
15/**
16 *  Constants for the values of the <code>direction</code> property
17 *  of a ScrollEvent.
18 *
19 *  @see mx.events.ScrollEvent
20 */
21public final class ScrollEventDirection
22{
23    include "../core/Version.as";
24
25	//--------------------------------------------------------------------------
26	//
27	//  Class constants
28	//
29	//--------------------------------------------------------------------------
30
31	/**
32	 *  The user scrolled horizontally.
33	 */
34	public static const HORIZONTAL:String = "horizontal";
35
36	/**
37	 *  The user scrolled vertically.
38	 */
39	public static const VERTICAL:String = "vertical";
40}
41
42}
43