forked from as3/as3-utils
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAlignment.as
More file actions
46 lines (45 loc) · 1.07 KB
/
Alignment.as
File metadata and controls
46 lines (45 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package utils.display
{
/**
* @author Justin Windle (justin(at)soulwire.co.uk)
*/
public class Alignment
{
/**
* Specifies that alignment is at the bottom.
*/
public static const BOTTOM:String = "B";
/**
* Specifies that alignment is in the bottom-left corner.
*/
public static const BOTTOM_LEFT:String = "BL";
/**
* Specifies that alignment is in the bottom-right corner.
*/
public static const BOTTOM_RIGHT:String = "BR";
/**
* Specifies that alignment is on the left.
*/
public static const LEFT:String = "L";
/**
* Specifies that alignment is in the middle
*/
public static const MIDDLE:String = "C";
/**
* Specifies that alignment is on the right.
*/
public static const RIGHT:String = "R";
/**
* Specifies that alignment is at the top.
*/
public static const TOP:String = "T";
/**
* Specifies that alignment is in the top-left corner.
*/
public static const TOP_LEFT:String = "TL";
/**
* Specifies that alignment is in the top-right corner.
*/
public static const TOP_RIGHT:String = "TR";
}
}