summaryrefslogtreecommitdiff
path: root/oovbaapi/org
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/org')
-rw-r--r--oovbaapi/org/openoffice/excel/XWindow.idl31
1 files changed, 26 insertions, 5 deletions
diff --git a/oovbaapi/org/openoffice/excel/XWindow.idl b/oovbaapi/org/openoffice/excel/XWindow.idl
index 31a5ab727b4a..edaa02d07447 100644
--- a/oovbaapi/org/openoffice/excel/XWindow.idl
+++ b/oovbaapi/org/openoffice/excel/XWindow.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XWindow.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:44:08 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:29:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,24 +39,45 @@
#include <com/sun/star/uno/XInterface.idl>
#endif
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
//=============================================================================
module org { module openoffice { module excel {
//=============================================================================
-
-interface XWindow: com::sun::star::uno::XInterface
+interface XRange;
+interface XWindow
{
+ interface ::org::openoffice::vba::XHelperInterface;
+
[attribute] any Caption;
- [attribute] any ScrollRow;
+ [attribute] boolean DisplayGridlines;
+ [attribute] boolean DisplayHeadings;
+ [attribute] boolean DisplayHorizontalScrollBar;
+ [attribute] boolean DisplayOutline;
+ [attribute] boolean DisplayVerticalScrollBar;
+ [attribute] boolean DisplayWorkbookTabs;
+ [attribute] boolean FreezePanes;
+ [attribute] boolean Split;
+ [attribute] long SplitColumn;
+ [attribute] double SplitHorizontal;
+ [attribute] long SplitRow;
+ [attribute] double SplitVertical;
[attribute] any ScrollColumn;
+ [attribute] any ScrollRow;
[attribute] any WindowState;
+ [attribute] any Zoom;
any SelectedSheets( [in] any aIndex );
void SmallScroll( [in] any Down, [in] any Up, [in] any ToRight, [in] any ToLeft );
void LargeScroll( [in] any Down, [in] any Up, [in] any ToRight, [in] any ToLeft );
void ScrollWorkbookTabs( [in] any Sheets, [in] any Position );
void Activate();
void Close([in] any SaveChanges, [in] any FileName, [in] any RouteWorkBook);
+ XRange ActiveCell() raises(com::sun::star::script::BasicErrorException);
+ any Selection() raises(com::sun::star::script::BasicErrorException);
};