1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24#ifndef __ooo_vba_excel_XFormat_idl__ 25#define __ooo_vba_excel_XFormat_idl__ 26 27#ifndef __com_sun_star_script_BasicErrorException_idl__ 28#include <com/sun/star/script/BasicErrorException.idl> 29#endif 30#ifndef __ooo_vba_XHelperInterface_idl__ 31#include <ooo/vba/XHelperInterface.idl> 32#endif 33 34module ooo { module vba { module excel { 35 36interface XBorders; 37interface XFont; 38interface XInterior; 39 40interface XFormat 41{ 42 interface ::ooo::vba::XHelperInterface; 43 // void Clear( ) raises ( com::sun::star::script::BasicErrorException ); 44 45 any Borders( [in] any Item ) 46 raises(com::sun::star::script::BasicErrorException); 47 48 XFont Font() 49 raises(com::sun::star::script::BasicErrorException); 50 51 XInterior Interior() 52 raises(com::sun::star::script::BasicErrorException); 53 54 void setNumberFormat([in] any NumberFormat) 55 raises(com::sun::star::script::BasicErrorException); 56 57 any getNumberFormat() 58 raises(com::sun::star::script::BasicErrorException); 59 60 void setNumberFormatLocal([in] any NumberFormatLocal) 61 raises(com::sun::star::script::BasicErrorException); 62 63 any getNumberFormatLocal() 64 raises(com::sun::star::script::BasicErrorException); 65 66 void setIndentLevel([in] any IndentLevel) 67 raises(com::sun::star::script::BasicErrorException); 68 69 any getIndentLevel() 70 raises(com::sun::star::script::BasicErrorException); 71 72 void setHorizontalAlignment([in] any HorizontalAlignment) 73 raises(com::sun::star::script::BasicErrorException); 74 75 any getHorizontalAlignment() 76 raises(com::sun::star::script::BasicErrorException); 77 78 void setVerticalAlignment([in] any VerticalAlignment) 79 raises(com::sun::star::script::BasicErrorException); 80 81 any getVerticalAlignment() 82 raises(com::sun::star::script::BasicErrorException); 83 84 void setOrientation([in] any Orientation) 85 raises(com::sun::star::script::BasicErrorException); 86 87 any getOrientation() 88 raises(com::sun::star::script::BasicErrorException); 89 90 void setShrinkToFit([in] any ShrinkToFit) 91 raises(com::sun::star::script::BasicErrorException); 92 93 any getShrinkToFit() 94 raises(com::sun::star::script::BasicErrorException); 95 96 void setWrapText([in] any WrapText) 97 raises(com::sun::star::script::BasicErrorException); 98 99 any getWrapText() 100 raises(com::sun::star::script::BasicErrorException); 101 102 void setLocked([in] any Locked) 103 raises(com::sun::star::script::BasicErrorException); 104 105 any getLocked() 106 raises(com::sun::star::script::BasicErrorException); 107 108 void setFormulaHidden([in] any FormulaHidden) 109 raises(com::sun::star::script::BasicErrorException); 110 111 any getFormulaHidden() 112 raises(com::sun::star::script::BasicErrorException); 113 114 void setMergeCells([in] any MergeCells) 115 raises(com::sun::star::script::BasicErrorException); 116 117 any getMergeCells() 118 raises(com::sun::star::script::BasicErrorException); 119 120 void setReadingOrder([in] any ReadingOrder) 121 raises(com::sun::star::script::BasicErrorException); 122 123 any getReadingOrder() 124 raises(com::sun::star::script::BasicErrorException); 125 126}; 127 128}; }; }; 129 130#endif 131 132