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