xref: /aoo42x/main/oovbaapi/ooo/vba/excel/XStyle.idl (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#ifndef __ooo_vba_excel_XStyle_idl__
29#define __ooo_vba_excel_XStyle_idl__
30
31#ifndef __com_sun_star_script_BasicErrorException_idl__
32#include <com/sun/star/script/BasicErrorException.idl>
33#endif
34
35#ifndef __ooo_vba_XHelperInterface_idl__
36#include <ooo/vba/XHelperInterface.idl>
37#endif
38#ifndef __ooo_vba_excel_XFormat_idl__
39#include <ooo/vba/excel/XFormat.idl>
40#endif
41
42module ooo {  module vba { module excel {
43interface XStyle
44{
45    interface XFormat;
46
47    boolean BuiltIn()
48        raises(com::sun::star::script::BasicErrorException);
49
50    void setName([in] string Name)
51        raises(com::sun::star::script::BasicErrorException);
52
53    string getName()
54        raises(com::sun::star::script::BasicErrorException);
55
56    void setNameLocal([in] string NameLocal)
57        raises(com::sun::star::script::BasicErrorException);
58
59    string getNameLocal()
60        raises(com::sun::star::script::BasicErrorException);
61
62    void Delete()
63        raises(com::sun::star::script::BasicErrorException);
64
65    /**    void		setValue( [in] string Value ) raises ( com::sun::star::script::BasicErrorException );
66
67     string		getValue( ) raises ( com::sun::star::script::BasicErrorException );
68
69     void		setIncludeAlignment( [in] boolean IncludeAlignment ) raises ( com::sun::star::script::BasicErrorException );
70
71     boolean		getIncludeAlignment( ) raises ( com::sun::star::script::BasicErrorException );
72
73     void		setIncludeBorder( [in] boolean IncludeBorder ) raises ( com::sun::star::script::BasicErrorException );
74
75     boolean		getIncludeBorder( ) raises ( com::sun::star::script::BasicErrorException );
76
77     void		setIncludeFont( [in] boolean IncludeFont ) raises ( com::sun::star::script::BasicErrorException );
78
79     boolean		getIncludeFont( ) raises ( com::sun::star::script::BasicErrorException );
80
81     void		setIncludeNumber( [in] boolean IncludeNumber ) raises ( com::sun::star::script::BasicErrorException );
82
83     boolean		getIncludeNumber( ) raises ( com::sun::star::script::BasicErrorException );
84
85     void		setIncludePatterns( [in] boolean IncludePatterns ) raises ( com::sun::star::script::BasicErrorException );
86
87     boolean		getIncludePatterns( ) raises ( com::sun::star::script::BasicErrorException );
88
89     void		setIncludeProtection( [in] boolean IncludeProtection ) raises ( com::sun::star::script::BasicErrorException );
90
91     boolean		getIncludeProtection( ) raises ( com::sun::star::script::BasicErrorException );
92     */
93
94};
95
96}; }; };
97
98#endif
99
100