diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-12-07 10:29:52 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-12-07 10:29:52 +0000 |
commit | ea4bb862e670b9244a3882b8aa2cc8de7d83cb38 (patch) | |
tree | 1c8786ec1746595c1799c05b73d9e049e999f07d | |
parent | 92bd0564abedb5293813d36b8a53c903887dff68 (diff) |
INTEGRATION: CWS npower8 (1.2.2); FILE MERGED
2007/10/17 17:53:34 npower 1.2.2.4: #i77189#
2007/09/03 12:20:53 npower 1.2.2.3: #i77189# sync with oobuild
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
-rw-r--r-- | oovbaapi/org/openoffice/excel/XWorksheet.idl | 27 |
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); + + }; //============================================================================= |