lok: vcl: fix multiple floatwin removal case more robustly.
[LibreOffice.git] / oovbaapi / ooo / vba / excel / XFormat.idl
blob5dc866aa54fc9b254ba1957ac0e3ea6f7186fefb
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_XFormat_idl__
21 #define __ooo_vba_excel_XFormat_idl__
23 #include <com/sun/star/script/BasicErrorException.idl>
24 #include <ooo/vba/XHelperInterface.idl>
26 module ooo { module vba { module excel {
28 interface XBorders;
29 interface XFont;
30 interface XInterior;
32 interface XFormat
34 interface ::ooo::vba::XHelperInterface;
35 // void Clear( ) raises ( com::sun::star::script::BasicErrorException );
37 any Borders( [in] any Item )
38 raises(com::sun::star::script::BasicErrorException);
40 XFont Font()
41 raises(com::sun::star::script::BasicErrorException);
43 XInterior Interior()
44 raises(com::sun::star::script::BasicErrorException);
46 void setNumberFormat([in] any NumberFormat)
47 raises(com::sun::star::script::BasicErrorException);
49 any getNumberFormat()
50 raises(com::sun::star::script::BasicErrorException);
52 void setNumberFormatLocal([in] any NumberFormatLocal)
53 raises(com::sun::star::script::BasicErrorException);
55 any getNumberFormatLocal()
56 raises(com::sun::star::script::BasicErrorException);
58 void setIndentLevel([in] any IndentLevel)
59 raises(com::sun::star::script::BasicErrorException);
61 any getIndentLevel()
62 raises(com::sun::star::script::BasicErrorException);
64 void setHorizontalAlignment([in] any HorizontalAlignment)
65 raises(com::sun::star::script::BasicErrorException);
67 any getHorizontalAlignment()
68 raises(com::sun::star::script::BasicErrorException);
70 void setVerticalAlignment([in] any VerticalAlignment)
71 raises(com::sun::star::script::BasicErrorException);
73 any getVerticalAlignment()
74 raises(com::sun::star::script::BasicErrorException);
76 void setOrientation([in] any Orientation)
77 raises(com::sun::star::script::BasicErrorException);
79 any getOrientation()
80 raises(com::sun::star::script::BasicErrorException);
82 void setShrinkToFit([in] any ShrinkToFit)
83 raises(com::sun::star::script::BasicErrorException);
85 any getShrinkToFit()
86 raises(com::sun::star::script::BasicErrorException);
88 void setWrapText([in] any WrapText)
89 raises(com::sun::star::script::BasicErrorException);
91 any getWrapText()
92 raises(com::sun::star::script::BasicErrorException);
94 void setLocked([in] any Locked)
95 raises(com::sun::star::script::BasicErrorException);
97 any getLocked()
98 raises(com::sun::star::script::BasicErrorException);
100 void setFormulaHidden([in] any FormulaHidden)
101 raises(com::sun::star::script::BasicErrorException);
103 any getFormulaHidden()
104 raises(com::sun::star::script::BasicErrorException);
106 void setMergeCells([in] any MergeCells)
107 raises(com::sun::star::script::BasicErrorException);
109 any getMergeCells()
110 raises(com::sun::star::script::BasicErrorException);
112 void setReadingOrder([in] any ReadingOrder)
113 raises(com::sun::star::script::BasicErrorException);
115 any getReadingOrder()
116 raises(com::sun::star::script::BasicErrorException);
120 }; }; };
122 #endif
124 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */