summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-12-07 10:29:02 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-12-07 10:29:02 +0000
commit1d34dc088e07155622dffa9aefb4853f8b27f714 (patch)
tree081b8b9cb1c615aa5c99b192b1bd24bbca9fbf56 /oovbaapi
parent4e55ed26f70c119a0013c357cb05886a5d39211e (diff)
INTEGRATION: CWS npower8 (1.2.2); FILE MERGED
2007/10/30 16:19:35 npower 1.2.2.4: #i77189# 2007/10/16 09:36:07 npower 1.2.2.3: #i77189# 2007/07/18 13:46:58 npower 1.2.2.2: #i77189# sync ooo-build and this module 2007/05/10 11:22:17 npower 1.2.2.1: #i77189# idl
Diffstat (limited to 'oovbaapi')
-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 1a0eea3fcf..e4844423a0 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);
};