diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-12-07 10:29:02 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-12-07 10:29:02 +0000 |
commit | 66082ad4cf89b162ec98e3994cd095b6cd1a9a54 (patch) | |
tree | 82484ed20c263e6642023f08cd2d60c73176c888 /oovbaapi/org | |
parent | fb6a7631d1266afa370e7fc4731ac22f6289d2d5 (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/org')
-rw-r--r-- | oovbaapi/org/openoffice/excel/XWindow.idl | 31 |
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); }; |