lok: vcl: fix multiple floatwin removal case more robustly.
[LibreOffice.git] / oovbaapi / ooo / vba / excel / XTitle.idl
blob6efe4a4d53cd7e16aa70d83beda1e6ba2a45b562
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef __ooo_vba_excel_XTitle_idl__
21 #define __ooo_vba_excel_XTitle_idl__
23 #include <ooo/vba/XHelperInterface.idl>
24 #include <com/sun/star/script/BasicErrorException.idl>
26 module ooo { module vba { module excel {
28 interface XCharacters;
29 interface XFont;
30 interface XBorder;
31 interface XInterior;
33 interface XTitle
35 interface ::ooo::vba::XHelperInterface;
36 // XBorder Border( ) raises ( com::sun::star::script::BasicErrorException );
38 XInterior Interior() raises(com::sun::star::script::BasicErrorException);
40 XFont Font() raises(com::sun::star::script::BasicErrorException);
42 void setText([in] string Text) raises(com::sun::star::script::BasicErrorException);
44 string getText() raises(com::sun::star::script::BasicErrorException);
45 // #FIXME existing implementation object needs to be usable for shape, chart
46 // axes etc.
47 //XCharacters Characters() raises(com::sun::star::script::BasicErrorException);
49 void setTop([in] double Top) raises(com::sun::star::script::BasicErrorException);
51 double getTop() raises(com::sun::star::script::BasicErrorException);
53 void setLeft([in] double Left) raises(com::sun::star::script::BasicErrorException);
55 double getLeft() raises(com::sun::star::script::BasicErrorException);
57 void setOrientation([in] long Orientation) raises(com::sun::star::script::BasicErrorException);
59 long getOrientation() raises(com::sun::star::script::BasicErrorException);
61 // any Select( ) raises ( com::sun::star::script::BasicErrorException );
63 // any Delete( ) raises ( com::sun::star::script::BasicErrorException );
65 // void setName( [in] string Name ) raises ( com::sun::star::script::BasicErrorException );
67 // string getName( ) raises ( com::sun::star::script::BasicErrorException );
69 // void setFill( [in] XChartFillFormat Fill ) raises ( com::sun::star::script::BasicErrorException );
71 // XChartFillFormat getFill( ) raises ( com::sun::star::script::BasicErrorException );
73 // void setCaption( [in] string Caption ) raises ( com::sun::star::script::BasicErrorException );
75 // string getCaption( ) raises ( com::sun::star::script::BasicErrorException );
77 // void setHorizontalAlignment( [in] any HorizontalAlignment ) raises ( com::sun::star::script::BasicErrorException );
79 // any getHorizontalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
81 // void setShadow( [in] boolean Shadow ) raises ( com::sun::star::script::BasicErrorException );
83 // boolean getShadow( ) raises ( com::sun::star::script::BasicErrorException );
85 // void setVerticalAlignment( [in] any VerticalAlignment ) raises ( com::sun::star::script::BasicErrorException );
87 // any getVerticalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
89 // void setReadingOrder( [in] long ReadingOrder ) raises ( com::sun::star::script::BasicErrorException );
91 // long getReadingOrder( ) raises ( com::sun::star::script::BasicErrorException );
93 // void setAutoScaleFont( [in] any AutoScaleFont ) raises ( com::sun::star::script::BasicErrorException );
95 // any getAutoScaleFont( ) raises ( com::sun::star::script::BasicErrorException );
100 }; }; };
102 #endif
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */