xref: /aoo42x/main/oovbaapi/ooo/vba/excel/XTitle.idl (revision 41b4bf98)
1*41b4bf98SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*41b4bf98SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*41b4bf98SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*41b4bf98SAndrew Rist * distributed with this work for additional information
6*41b4bf98SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*41b4bf98SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*41b4bf98SAndrew Rist * "License"); you may not use this file except in compliance
9*41b4bf98SAndrew Rist * with the License.  You may obtain a copy of the License at
10*41b4bf98SAndrew Rist *
11*41b4bf98SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*41b4bf98SAndrew Rist *
13*41b4bf98SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*41b4bf98SAndrew Rist * software distributed under the License is distributed on an
15*41b4bf98SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*41b4bf98SAndrew Rist * KIND, either express or implied.  See the License for the
17*41b4bf98SAndrew Rist * specific language governing permissions and limitations
18*41b4bf98SAndrew Rist * under the License.
19*41b4bf98SAndrew Rist *
20*41b4bf98SAndrew Rist *************************************************************/
21*41b4bf98SAndrew Rist
22*41b4bf98SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#ifndef __ooo_vba_excel_XTitle_idl__
25cdf0e10cSrcweir#define __ooo_vba_excel_XTitle_idl__
26cdf0e10cSrcweir
27cdf0e10cSrcweir#ifndef __ooo_vba_XHelperInterface_idl__
28cdf0e10cSrcweir#include <ooo/vba/XHelperInterface.idl>
29cdf0e10cSrcweir#endif
30cdf0e10cSrcweir
31cdf0e10cSrcweir#ifndef __com_sun_star_script_BasicErrorException_idl__
32cdf0e10cSrcweir#include <com/sun/star/script/BasicErrorException.idl>
33cdf0e10cSrcweir#endif
34cdf0e10cSrcweir
35cdf0e10cSrcweirmodule ooo {  module vba { module excel {
36cdf0e10cSrcweir
37cdf0e10cSrcweirinterface XCharacters;
38cdf0e10cSrcweirinterface XFont;
39cdf0e10cSrcweirinterface XBorder;
40cdf0e10cSrcweirinterface XInterior;
41cdf0e10cSrcweir
42cdf0e10cSrcweirinterface XTitle
43cdf0e10cSrcweir{
44cdf0e10cSrcweir	interface ::ooo::vba::XHelperInterface;
45cdf0e10cSrcweir    //    XBorder			Border( ) raises ( com::sun::star::script::BasicErrorException );
46cdf0e10cSrcweir
47cdf0e10cSrcweir    XInterior Interior() raises(com::sun::star::script::BasicErrorException);
48cdf0e10cSrcweir
49cdf0e10cSrcweir    XFont Font() raises(com::sun::star::script::BasicErrorException);
50cdf0e10cSrcweir
51cdf0e10cSrcweir    void setText([in] string Text) raises(com::sun::star::script::BasicErrorException);
52cdf0e10cSrcweir
53cdf0e10cSrcweir    string getText() raises(com::sun::star::script::BasicErrorException);
54cdf0e10cSrcweir    // #FIXME existing implementation object needs to be usable for shape, chart
55cdf0e10cSrcweir    // axes etc.
56cdf0e10cSrcweir    //XCharacters Characters() raises(com::sun::star::script::BasicErrorException);
57cdf0e10cSrcweir
58cdf0e10cSrcweir    void setTop([in] double Top) raises(com::sun::star::script::BasicErrorException);
59cdf0e10cSrcweir
60cdf0e10cSrcweir    double getTop() raises(com::sun::star::script::BasicErrorException);
61cdf0e10cSrcweir
62cdf0e10cSrcweir    void setLeft([in] double Left) raises(com::sun::star::script::BasicErrorException);
63cdf0e10cSrcweir
64cdf0e10cSrcweir    double getLeft() raises(com::sun::star::script::BasicErrorException);
65cdf0e10cSrcweir
66cdf0e10cSrcweir    void setOrientation([in] long Orientation) raises(com::sun::star::script::BasicErrorException);
67cdf0e10cSrcweir
68cdf0e10cSrcweir    long getOrientation() raises(com::sun::star::script::BasicErrorException);
69cdf0e10cSrcweir
70cdf0e10cSrcweir    // any			Select(  ) raises ( com::sun::star::script::BasicErrorException );
71cdf0e10cSrcweir
72cdf0e10cSrcweir    // any			Delete(  ) raises ( com::sun::star::script::BasicErrorException );
73cdf0e10cSrcweir
74cdf0e10cSrcweir    //    void			setName( [in] string Name ) raises ( com::sun::star::script::BasicErrorException );
75cdf0e10cSrcweir
76cdf0e10cSrcweir    //    string			getName( ) raises ( com::sun::star::script::BasicErrorException );
77cdf0e10cSrcweir
78cdf0e10cSrcweir    // void		setFill( [in] XChartFillFormat Fill ) raises ( com::sun::star::script::BasicErrorException );
79cdf0e10cSrcweir
80cdf0e10cSrcweir    // XChartFillFormat		getFill( ) raises ( com::sun::star::script::BasicErrorException );
81cdf0e10cSrcweir
82cdf0e10cSrcweir    // void			setCaption( [in] string Caption ) raises ( com::sun::star::script::BasicErrorException );
83cdf0e10cSrcweir
84cdf0e10cSrcweir    // string			getCaption( ) raises ( com::sun::star::script::BasicErrorException );
85cdf0e10cSrcweir
86cdf0e10cSrcweir    // void			setHorizontalAlignment( [in] any HorizontalAlignment ) raises ( com::sun::star::script::BasicErrorException );
87cdf0e10cSrcweir
88cdf0e10cSrcweir    // any			getHorizontalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
89cdf0e10cSrcweir
90cdf0e10cSrcweir    // void			setShadow( [in] boolean Shadow ) raises ( com::sun::star::script::BasicErrorException );
91cdf0e10cSrcweir
92cdf0e10cSrcweir    // boolean			getShadow( ) raises ( com::sun::star::script::BasicErrorException );
93cdf0e10cSrcweir
94cdf0e10cSrcweir    // void			setVerticalAlignment( [in] any VerticalAlignment ) raises ( com::sun::star::script::BasicErrorException );
95cdf0e10cSrcweir
96cdf0e10cSrcweir    // any			getVerticalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
97cdf0e10cSrcweir
98cdf0e10cSrcweir    // void			setReadingOrder( [in] long ReadingOrder ) raises ( com::sun::star::script::BasicErrorException );
99cdf0e10cSrcweir
100cdf0e10cSrcweir    // long			getReadingOrder( ) raises ( com::sun::star::script::BasicErrorException );
101cdf0e10cSrcweir
102cdf0e10cSrcweir    // void			setAutoScaleFont( [in] any AutoScaleFont ) raises ( com::sun::star::script::BasicErrorException );
103cdf0e10cSrcweir
104cdf0e10cSrcweir    // any			getAutoScaleFont( ) raises ( com::sun::star::script::BasicErrorException );
105cdf0e10cSrcweir
106cdf0e10cSrcweir
107cdf0e10cSrcweir};
108cdf0e10cSrcweir
109cdf0e10cSrcweir}; }; };
110cdf0e10cSrcweir
111cdf0e10cSrcweir#endif
112cdf0e10cSrcweir
113