InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ISelectCellRangeCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Danielle Bessette
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 __ISelectCellRangeCmdData__
25 #define __ISelectCellRangeCmdData__
26 
27 #include "IPMUnknown.h"
28 #include "HelperInterface.h"
29 #include "TablesUIID.h"
30 #include "TableTypes.h"
31 #include "ITableSelectionSuite.h"
32 
38 {
39 public:
40  enum { kDefaultIID = IID_ISELECTCELLRANGECMDDATA };
41 
46  virtual void SetModel(UIDRef ref) = 0;
51  virtual const UIDRef GetModel(void) const = 0;
52 
57  virtual void SetRange(GridArea range) = 0;
62  virtual const GridArea GetRange(void) const = 0;
63 
68  virtual void SetRedraw(bool16 redraw) = 0;
73  virtual const bool16 GetRedraw(void) const = 0;
74 
79  virtual void SetAutoScroll(bool16 redraw) = 0;
84  virtual const bool16 GetAutoScroll(void) const = 0;
85 
90  virtual void SetSelectAction(ITableSelectionSuite::SelectAction selectAction) = 0;
95  virtual const ITableSelectionSuite::SelectAction GetSelectAction(void) const = 0;
96 };
97 
98 #endif