1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 module ooo
{ module vba
{ module excel
{
22 interface XCharacters
;
29 interface ::ooo
::vba
::XHelperInterface
;
30 // XBorder Border( ) raises ( com::sun::star::script::BasicErrorException );
32 XInterior Interior
() raises
(com
::sun
::star
::script
::BasicErrorException
);
34 XFont Font
() raises
(com
::sun
::star
::script
::BasicErrorException
);
36 void setText
([in] string Text
) raises
(com
::sun
::star
::script
::BasicErrorException
);
38 string getText
() raises
(com
::sun
::star
::script
::BasicErrorException
);
39 // #FIXME existing implementation object needs to be usable for shape, chart
41 //XCharacters Characters() raises(com::sun::star::script::BasicErrorException);
43 void setTop
([in] double Top
) raises
(com
::sun
::star
::script
::BasicErrorException
);
45 double getTop
() raises
(com
::sun
::star
::script
::BasicErrorException
);
47 void setLeft
([in] double Left
) raises
(com
::sun
::star
::script
::BasicErrorException
);
49 double getLeft
() raises
(com
::sun
::star
::script
::BasicErrorException
);
51 void setOrientation
([in] long Orientation
) raises
(com
::sun
::star
::script
::BasicErrorException
);
53 long getOrientation
() raises
(com
::sun
::star
::script
::BasicErrorException
);
55 // any Select( ) raises ( com::sun::star::script::BasicErrorException );
57 // any Delete( ) raises ( com::sun::star::script::BasicErrorException );
59 // void setName( [in] string Name ) raises ( com::sun::star::script::BasicErrorException );
61 // string getName( ) raises ( com::sun::star::script::BasicErrorException );
63 // void setFill( [in] XChartFillFormat Fill ) raises ( com::sun::star::script::BasicErrorException );
65 // XChartFillFormat getFill( ) raises ( com::sun::star::script::BasicErrorException );
67 // void setCaption( [in] string Caption ) raises ( com::sun::star::script::BasicErrorException );
69 // string getCaption( ) raises ( com::sun::star::script::BasicErrorException );
71 // void setHorizontalAlignment( [in] any HorizontalAlignment ) raises ( com::sun::star::script::BasicErrorException );
73 // any getHorizontalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
75 // void setShadow( [in] boolean Shadow ) raises ( com::sun::star::script::BasicErrorException );
77 // boolean getShadow( ) raises ( com::sun::star::script::BasicErrorException );
79 // void setVerticalAlignment( [in] any VerticalAlignment ) raises ( com::sun::star::script::BasicErrorException );
81 // any getVerticalAlignment( ) raises ( com::sun::star::script::BasicErrorException );
83 // void setReadingOrder( [in] long ReadingOrder ) raises ( com::sun::star::script::BasicErrorException );
85 // long getReadingOrder( ) raises ( com::sun::star::script::BasicErrorException );
87 // void setAutoScaleFont( [in] any AutoScaleFont ) raises ( com::sun::star::script::BasicErrorException );
89 // any getAutoScaleFont( ) raises ( com::sun::star::script::BasicErrorException );
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */