merge the formfield patch from ooo-build
[ooovba.git] / offapi / com / sun / star / report / XFixedLine.idl
blobafcd16f7d2c3ff5049742d763343199f28a83f06
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XFixedLine.idl,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_report_XFixedLine_idl__
31 #define __com_sun_star_report_XFixedLine_idl__
33 #ifndef __com_sun_star_report_XReportControlModel_idl__
34 #include <com/sun/star/report/XReportControlModel.idl>
35 #endif
36 #ifndef __com_sun_star_drawing_CircleKind_idl__
37 #include <com/sun/star/drawing/CircleKind.idl>
38 #endif
39 #ifndef __com_sun_star_drawing_LineStyle_idl__
40 #include <com/sun/star/drawing/LineStyle.idl>
41 #endif
43 #ifndef __com_sun_star_util_Color_idl__
44 #include <com/sun/star/util/Color.idl>
45 #endif
47 #ifndef __com_sun_star_drawing_LineDash_idl__
48 #include <com/sun/star/drawing/LineDash.idl>
49 #endif
50 //=============================================================================
52 module com { module sun { module star { module report {
54 //=============================================================================
55 interface XFixedLine
57 interface XReportControlModel;
59 /** specifies the orientation of the control.
61 <pre>
62 0: horizontal
63 1: vertical </default>
64 </pre>
66 [attribute,bound] long Orientation
68 set raises ( com::sun::star::beans::UnknownPropertyException );
69 get raises ( com::sun::star::beans::UnknownPropertyException );
72 /** This property contains the type of the line.
74 [attribute,bound] com::sun::star::drawing::LineStyle LineStyle;
76 //-------------------------------------------------------------------------
78 /** This property contains the dash of the line.
80 [attribute,bound] com::sun::star::drawing::LineDash LineDash;
82 //-------------------------------------------------------------------------
84 /** This property contains the line color.
86 [attribute,bound] com::sun::star::util::Color LineColor;
88 //-------------------------------------------------------------------------
90 /** This property contains the extent of transparency.
92 [attribute,bound] short LineTransparence;
94 //-------------------------------------------------------------------------
96 /** This property contains the width of the line in 1/100th mm.
98 [attribute,bound] long LineWidth;
100 //-------------------------------------------------------------------------
103 service FixedLine : XFixedLine;
104 //=============================================================================
106 }; }; }; };
108 /*=============================================================================
110 =============================================================================*/
111 #endif