update dev300-m58
[ooovba.git] / offapi / com / sun / star / text / VertOrientation.idl
blob44461d41198ccfc0760ccc9b5c200832c95ec134
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: VertOrientation.idl,v $
10 * $Revision: 1.7 $
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_text_VertOrientation_idl__
31 #define __com_sun_star_text_VertOrientation_idl__
34 //=============================================================================
36 module com { module sun { module star { module text {
38 //=============================================================================
40 // DocMerge from idl: constants com::sun::star::text::VertOrientation
41 /** These enumeration values are used to specify the vertical orientation.
43 published constants VertOrientation
45 //-------------------------------------------------------------------------
47 // DocMerge from idl: value com::sun::star::text::VertOrientation::NONE
48 /** no hard alignment
50 const short NONE = 0;
52 //-------------------------------------------------------------------------
54 // DocMerge from idl: value com::sun::star::text::VertOrientation::TOP
55 /** aligned at the top
57 const short TOP = 1;
59 //-------------------------------------------------------------------------
61 // DocMerge from idl: value com::sun::star::text::VertOrientation::CENTER
62 /** aligned at the center
64 const short CENTER = 2;
66 //-------------------------------------------------------------------------
68 // DocMerge from idl: value com::sun::star::text::VertOrientation::BOTTOM
69 /** aligned at the bottom
71 const short BOTTOM = 3;
73 //-------------------------------------------------------------------------
75 // DocMerge from idl: value com::sun::star::text::VertOrientation::CHAR_TOP
76 /** aligned at the top of a character (anchored to character)
78 const short CHAR_TOP = 4;
80 //-------------------------------------------------------------------------
82 // DocMerge from idl: value com::sun::star::text::VertOrientation::CHAR_CENTER
83 /** aligned at the center of a character (anchored to character )
85 const short CHAR_CENTER = 5;
87 //-------------------------------------------------------------------------
89 // DocMerge from idl: value com::sun::star::text::VertOrientation::CHAR_BOTTOM
90 /** aligned at the bottom of a character (anchored to character )
92 const short CHAR_BOTTOM = 6;
94 //-------------------------------------------------------------------------
96 // DocMerge from idl: value com::sun::star::text::VertOrientation::LINE_TOP
97 /** aligned at the top of the line (anchored to character )
99 const short LINE_TOP = 7;
101 //-------------------------------------------------------------------------
103 // DocMerge from idl: value com::sun::star::text::VertOrientation::LINE_CENTER
104 /** aligned at the center of the line (anchored to character )
106 const short LINE_CENTER = 8;
108 //-------------------------------------------------------------------------
110 // DocMerge from idl: value com::sun::star::text::VertOrientation::LINE_BOTTOM
111 /** aligned at the bottom of the line (anchored to character )
113 const short LINE_BOTTOM = 9;
117 //=============================================================================
119 }; }; }; };
121 /*=============================================================================
123 =============================================================================*/
124 #endif