InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IAlignCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: psorrick
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __ALIGNCMDDATA__
25 #define __ALIGNCMDDATA__
26 
27 typedef enum
28 {
29  kFirstAlignStandard = 0,
30  kHAlignLeft = kFirstAlignStandard,
31  kHAlignCenter = 1,
32  kHAlignRight = 2,
33  kVAlignTop = 3,
34  kVAlignCenter = 4,
35  kVAlignBottom = 5,
36  kLastAlignStandard = kVAlignBottom,
37 
38  kFirstKeyObjectAlign = 6,
39  kHAlignKeyObjectLeft = kFirstKeyObjectAlign,
40  kHAlignKeyObjectCenter = 7,
41  kHAlignKeyObjectRight = 8,
42  kVAlignKeyObjectTop = 9,
43  kVAlignKeyObjectCenter = 10,
44  kVAlignKeyObjectBottom = 11,
45  kLastKeyObjectAlign = kVAlignKeyObjectBottom,
46 
47  kFirstAlignRect = 12,
48  kHPageAlignLeft = kFirstAlignRect,
49  kHPageAlignCenter = 13,
50  kHPageAlignRight = 14,
51  kVPageAlignTop = 15,
52  kVPageAlignCenter = 16,
53  kVPageAlignBottom = 17,
54 
55  kHSpreadAlignLeft = 18,
56  kHSpreadAlignCenter = 19,
57  kHSpreadAlignRight = 20,
58  kVSpreadAlignTop = 21,
59  kVSpreadAlignCenter = 22,
60  kVSpreadAlignBottom = 23,
61 
62  kHMarginAlignLeft = 24,
63  kHMarginAlignCenter = 25,
64  kHMarginAlignRight = 26,
65  kVMarginAlignTop = 27,
66  kVMarginAlignCenter = 28,
67  kVMarginAlignBottom = 29,
68 
69  kHAlignBleedLeft = 30,
70  kHAlignBleedCenter = 31,
71  kHAlignBleedRight = 32,
72  kVAlignBleedTop = 33,
73  kVAlignBleedCenter = 34,
74  kVAlignBleedBottom = 35,
75 
76  kLastAlignRect = kVAlignBleedBottom
77 
78 } AlignType;
79 
80 #endif // __ALIGNCMDDATA__