InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
PrnSelScriptingDefs.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Adobe Developer Technologies
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 // Defines Scripting IDs used by the PrnSel plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __PrnSelScriptingDefs_h__
28 #define __PrnSelScriptingDefs_h__
29 
30 /*
31 // IDs used by the PrintSelection plug-in for scripting purposes
32 */
33 
34 /* GUIDs for script objects
35 */
36 
37 // {A940C9EF-1AD6-41a2-9800-4BF9022BD01E}
38 #define kPrnSel_CLSID { 0xa940c9ef, 0x1ad6, 0x41a2, { 0x98, 0x0, 0x4b, 0xf9, 0x2, 0x2b, 0xd0, 0x1e } }
39 
40 /* ScriptIDs
41 // New ScriptIDs must be registered with Adobe Developer Support to prevent conflict with other scriptable plug-ins.
42 // See the Making Your Plug-in Scriptable tech note.
43 */
44 enum PrnSelScriptingDefs
45 {
46  // Script object ScriptIDs:
47  c_PrintSelection = 'PSel', // the print selection object
48  // Property ScriptIDs:
49  p_PrintSelectionProperty = 'PSep', // the print selection property on the parent object
50  p_PrintSelection = 'PSEL' // the print selection property on this object
51 };
52 
53 #endif //#ifndef __PrnSelScriptingDefs_h__