update dev300-m58
[ooovba.git] / oovbaapi / ooo / vba / excel / XTitle.idl
blob11013f298ef36471d3a5de686410d570728a6363
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XTitle.idl,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __ooo_vba_excel_XTitle_idl__
32 #define __ooo_vba_excel_XTitle_idl__
34 #ifndef __ooo_vba_XHelperInterface_idl__
35 #include <ooo/vba/XHelperInterface.idl>
36 #endif
38 #ifndef __com_sun_star_script_BasicErrorException_idl__
39 #include <com/sun/star/script/BasicErrorException.idl>
40 #endif
42 module ooo { module vba { module excel {
44 interface XCharacters;
45 interface XFont;
46 interface XBorder;
47 interface XInterior;
49 interface XTitle
51 interface ::ooo::vba::XHelperInterface;
52 // XBorder Border( ) raises ( com::sun::star::script::BasicErrorException );
54 XInterior Interior() raises(com::sun::star::script::BasicErrorException);
56 XFont Font() raises(com::sun::star::script::BasicErrorException);
58 void setText([in] string Text) raises(com::sun::star::script::BasicErrorException);
60 string getText() raises(com::sun::star::script::BasicErrorException);
61 // #FIXME existing implementation object needs to be usable for shape, chart
62 // axes etc.
63 //XCharacters Characters() raises(com::sun::star::script::BasicErrorException);
65 void setTop([in] double Top) raises(com::sun::star::script::BasicErrorException);
67 double getTop() raises(com::sun::star::script::BasicErrorException);
69 void setLeft([in] double Left) raises(com::sun::star::script::BasicErrorException);
71 double getLeft() raises(com::sun::star::script::BasicErrorException);
73 void setOrientation([in] long Orientation) raises(com::sun::star::script::BasicErrorException);
75 long getOrientation() raises(com::sun::star::script::BasicErrorException);
77 // any Select( ) raises ( com::sun::star::script::BasicErrorException );
79 // any Delete( ) raises ( com::sun::star::script::BasicErrorException );
81 // void setName( [in] string Name ) raises ( com::sun::star::script::BasicErrorException );
83 // string getName( ) raises ( com::sun::star::script::BasicErrorException );
85 // void setFill( [in] XChartFillFormat Fill ) raises ( com::sun::star::script::BasicErrorException );
87 // XChartFillFormat getFill( ) raises ( com::sun::star::script::BasicErrorException );
89 // void setCaption( [in] string Caption ) raises ( com::sun::star::script::BasicErrorException );
91 // string getCaption( ) raises ( com::sun::star::script::BasicErrorException );
93 // void setHorizontalAlignment( [in] any HorizontalAlignment ) raises ( com::sun::star::script::BasicErrorException );
95 // any getHorizontalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
97 // void setShadow( [in] boolean Shadow ) raises ( com::sun::star::script::BasicErrorException );
99 // boolean getShadow( ) raises ( com::sun::star::script::BasicErrorException );
101 // void setVerticalAlignment( [in] any VerticalAlignment ) raises ( com::sun::star::script::BasicErrorException );
103 // any getVerticalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
105 // void setReadingOrder( [in] long ReadingOrder ) raises ( com::sun::star::script::BasicErrorException );
107 // long getReadingOrder( ) raises ( com::sun::star::script::BasicErrorException );
109 // void setAutoScaleFont( [in] any AutoScaleFont ) raises ( com::sun::star::script::BasicErrorException );
111 // any getAutoScaleFont( ) raises ( com::sun::star::script::BasicErrorException );
116 }; }; };
118 #endif