summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-12-07 10:29:28 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-12-07 10:29:28 +0000
commit92bd0564abedb5293813d36b8a53c903887dff68 (patch)
tree9bc1bed56b4825a1281249aff8d9bcf6818478b8 /oovbaapi
parent66082ad4cf89b162ec98e3994cd095b6cd1a9a54 (diff)
INTEGRATION: CWS npower8 (1.2.2); FILE MERGED
2007/10/17 17:53:34 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/XWorkbook.idl22
1 files changed, 19 insertions, 3 deletions
diff --git a/oovbaapi/org/openoffice/excel/XWorkbook.idl b/oovbaapi/org/openoffice/excel/XWorkbook.idl
index f6420057691a..c6d2c77b3f73 100644
--- a/oovbaapi/org/openoffice/excel/XWorkbook.idl
+++ b/oovbaapi/org/openoffice/excel/XWorkbook.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XWorkbook.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:44:52 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:29:28 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,6 +39,10 @@
#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 {
@@ -47,17 +51,22 @@ module org { module openoffice { module excel {
interface XWorksheet;
interface XWorksheets;
+interface XStyles;
-interface XWorkbook: com::sun::star::uno::XInterface
+interface XWorkbook
{
+ interface ::org::openoffice::vba::XHelperInterface;
+
[attribute, readonly] string Name;
[attribute, readonly] string Path;
[attribute, readonly] string FullName;
[attribute, readonly] boolean ProtectStructure;
[attribute, readonly] XWorksheet ActiveSheet;
[attribute] boolean Saved;
+ [attribute, readonly] string CodeName;
any Worksheets([in] any sheet);
+ any Styles([in] any Index );
any Sheets([in] any sheet);
any Windows([in] any index );
void Close([in] any SaveChanges, [in] any FileName, [in] any RouteWorkBook);
@@ -65,6 +74,13 @@ interface XWorkbook: com::sun::star::uno::XInterface
void Unprotect( [in] any Password );
void Save();
void Activate();
+ void ResetColors() raises (com::sun::star::script::BasicErrorException);
+
+ any Names();
+
+ any Colors([in] any Index) raises (com::sun::star::script::BasicErrorException);
+ long FileFormat() raises (com::sun::star::script::BasicErrorException);
+ void SaveCopyAs( [in] string Filename );
};
}; }; };