summaryrefslogtreecommitdiff
path: root/oovbaapi/org
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/org')
-rw-r--r--oovbaapi/org/openoffice/excel/XWorksheet.idl27
1 files changed, 24 insertions, 3 deletions
diff --git a/oovbaapi/org/openoffice/excel/XWorksheet.idl b/oovbaapi/org/openoffice/excel/XWorksheet.idl
index a133421c9284..24be764f12a1 100644
--- a/oovbaapi/org/openoffice/excel/XWorksheet.idl
+++ b/oovbaapi/org/openoffice/excel/XWorksheet.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XWorksheet.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:45:19 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:29:52 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,6 +39,14 @@
#include <com/sun/star/uno/XInterface.idl>
#endif
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
+#ifndef __com_sun_star_script_XInvocation_idl__
+#include <com/sun/star/script/XInvocation.idl>
+#endif
+
//=============================================================================
module org { module openoffice { module excel {
@@ -48,8 +56,11 @@ module org { module openoffice { module excel {
interface XComments;
interface XRange;
interface XOutline;
-interface XWorksheet: com::sun::star::uno::XInterface
+interface XWorksheet
{
+ interface ::org::openoffice::vba::XHelperInterface;
+ interface ::com::sun::star::script::XInvocation;
+
[attribute] string Name;
[attribute] boolean Visible;
[attribute, readonly] long StandardHeight;
@@ -60,6 +71,7 @@ interface XWorksheet: com::sun::star::uno::XInterface
[attribute, readonly] XRange UsedRange;
[attribute, readonly] XWorksheet Next;
[attribute, readonly] XWorksheet Previous;
+ [attribute, readonly] string CodeName;
void Activate();
void Calculate( );
@@ -76,6 +88,9 @@ interface XWorksheet: com::sun::star::uno::XInterface
any PivotTables([in] any Index);
any Comments([in] any Index);
XOutline Outline();
+ any OLEObjects([in] any Index);
+ void ShowDataForm();
+ any Shapes([in] any Index);
// FIXME: should prolly inherit from Range somehow...
@@ -84,6 +99,12 @@ interface XWorksheet: com::sun::star::uno::XInterface
XRange Columns([in] any aIndex);
any Evaluate( [in] string Name);
+
+
+ void setEnableCalculation([in] boolean EnableCalculation) raises(com::sun::star::script::BasicErrorException);
+ boolean getEnableCalculation() raises(com::sun::star::script::BasicErrorException);
+
+
};
//=============================================================================