bump product version to 4.1.6.2
[LibreOffice.git] / oovbaapi / ooo / vba / excel / XTitle.idl
blob1c5f06fc443931babd0558e1c640ddda4ec2253e
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __ooo_vba_excel_XTitle_idl__
20 #define __ooo_vba_excel_XTitle_idl__
22 #include <ooo/vba/XHelperInterface.idl>
23 #include <com/sun/star/script/BasicErrorException.idl>
25 module ooo { module vba { module excel {
27 interface XCharacters;
28 interface XFont;
29 interface XBorder;
30 interface XInterior;
32 interface XTitle
34 interface ::ooo::vba::XHelperInterface;
35 // XBorder Border( ) raises ( com::sun::star::script::BasicErrorException );
37 XInterior Interior() raises(com::sun::star::script::BasicErrorException);
39 XFont Font() raises(com::sun::star::script::BasicErrorException);
41 void setText([in] string Text) raises(com::sun::star::script::BasicErrorException);
43 string getText() raises(com::sun::star::script::BasicErrorException);
44 // #FIXME existing implementation object needs to be usable for shape, chart
45 // axes etc.
46 //XCharacters Characters() raises(com::sun::star::script::BasicErrorException);
48 void setTop([in] double Top) raises(com::sun::star::script::BasicErrorException);
50 double getTop() raises(com::sun::star::script::BasicErrorException);
52 void setLeft([in] double Left) raises(com::sun::star::script::BasicErrorException);
54 double getLeft() raises(com::sun::star::script::BasicErrorException);
56 void setOrientation([in] long Orientation) raises(com::sun::star::script::BasicErrorException);
58 long getOrientation() raises(com::sun::star::script::BasicErrorException);
60 // any Select( ) raises ( com::sun::star::script::BasicErrorException );
62 // any Delete( ) raises ( com::sun::star::script::BasicErrorException );
64 // void setName( [in] string Name ) raises ( com::sun::star::script::BasicErrorException );
66 // string getName( ) raises ( com::sun::star::script::BasicErrorException );
68 // void setFill( [in] XChartFillFormat Fill ) raises ( com::sun::star::script::BasicErrorException );
70 // XChartFillFormat getFill( ) raises ( com::sun::star::script::BasicErrorException );
72 // void setCaption( [in] string Caption ) raises ( com::sun::star::script::BasicErrorException );
74 // string getCaption( ) raises ( com::sun::star::script::BasicErrorException );
76 // void setHorizontalAlignment( [in] any HorizontalAlignment ) raises ( com::sun::star::script::BasicErrorException );
78 // any getHorizontalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
80 // void setShadow( [in] boolean Shadow ) raises ( com::sun::star::script::BasicErrorException );
82 // boolean getShadow( ) raises ( com::sun::star::script::BasicErrorException );
84 // void setVerticalAlignment( [in] any VerticalAlignment ) raises ( com::sun::star::script::BasicErrorException );
86 // any getVerticalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
88 // void setReadingOrder( [in] long ReadingOrder ) raises ( com::sun::star::script::BasicErrorException );
90 // long getReadingOrder( ) raises ( com::sun::star::script::BasicErrorException );
92 // void setAutoScaleFont( [in] any AutoScaleFont ) raises ( com::sun::star::script::BasicErrorException );
94 // any getAutoScaleFont( ) raises ( com::sun::star::script::BasicErrorException );
99 }; }; };
101 #endif