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 ButtonLabelPlacement class defines the constants for the allowed values
17 *  of the <code>labelPlacement</code>
18 *  property of a Button, CheckBox, LinkButton, or RadioButton control.
19 *
20 *  @see mx.controls.Button
21 *  @see mx.controls.CheckBox
22 *  @see mx.controls.LinkButton
23 *  @see mx.controls.RadioButton
24 */
25public final class ButtonLabelPlacement
26{
27	include "../core/Version.as";
28
29	//--------------------------------------------------------------------------
30	//
31	//  Class constants
32	//
33	//--------------------------------------------------------------------------
34
35	/**
36	 *  Specifies that the label appears below the icon.
37	 */
38	public static const BOTTOM:String = "bottom";
39
40	/**
41	 *  Specifies that the label appears to the left of the icon.
42	 */
43	public static const LEFT:String = "left";
44
45	/**
46	 *  Specifies that the label appears to the right of the icon.
47	 */
48	public static const RIGHT:String = "right";
49
50	/**
51	 *  Specifies that the label appears above the icon.
52	 */
53	public static const TOP:String = "top";
54}
55
56}
57