xref: /AOO41X/main/offapi/com/sun/star/text/VertOrientation.idl (revision d1766043198e81d0bcfc626e12893e7b4d7e31ca)
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#ifndef __com_sun_star_text_VertOrientation_idl__
24#define __com_sun_star_text_VertOrientation_idl__
25
26
27//=============================================================================
28
29 module com {  module sun {  module star {  module text {
30
31//=============================================================================
32
33// DocMerge from idl: constants com::sun::star::text::VertOrientation
34/** These enumeration values are used to specify the vertical orientation.
35 */
36published constants VertOrientation
37{
38    //-------------------------------------------------------------------------
39
40    // DocMerge from idl: value com::sun::star::text::VertOrientation::NONE
41    /** no hard alignment
42     */
43    const short NONE = 0;
44
45    //-------------------------------------------------------------------------
46
47    // DocMerge from idl: value com::sun::star::text::VertOrientation::TOP
48    /** aligned at the top
49     */
50    const short TOP = 1;
51
52    //-------------------------------------------------------------------------
53
54    // DocMerge from idl: value com::sun::star::text::VertOrientation::CENTER
55    /** aligned at the center
56     */
57    const short CENTER = 2;
58
59    //-------------------------------------------------------------------------
60
61    // DocMerge from idl: value com::sun::star::text::VertOrientation::BOTTOM
62    /** aligned at the bottom
63     */
64    const short BOTTOM = 3;
65
66    //-------------------------------------------------------------------------
67
68    // DocMerge from idl: value com::sun::star::text::VertOrientation::CHAR_TOP
69    /** aligned at the top of a character (anchored to character)
70     */
71    const short CHAR_TOP = 4;
72
73    //-------------------------------------------------------------------------
74
75    // DocMerge from idl: value com::sun::star::text::VertOrientation::CHAR_CENTER
76    /** aligned at the center of a character (anchored to character )
77     */
78    const short CHAR_CENTER = 5;
79
80    //-------------------------------------------------------------------------
81
82    // DocMerge from idl: value com::sun::star::text::VertOrientation::CHAR_BOTTOM
83    /** aligned at the bottom of a character (anchored to character )
84     */
85    const short CHAR_BOTTOM = 6;
86
87    //-------------------------------------------------------------------------
88
89    // DocMerge from idl: value com::sun::star::text::VertOrientation::LINE_TOP
90    /** aligned at the top of the line (anchored to character )
91     */
92    const short LINE_TOP = 7;
93
94    //-------------------------------------------------------------------------
95
96    // DocMerge from idl: value com::sun::star::text::VertOrientation::LINE_CENTER
97    /** aligned at the center of the line (anchored to character )
98     */
99    const short LINE_CENTER = 8;
100
101    //-------------------------------------------------------------------------
102
103    // DocMerge from idl: value com::sun::star::text::VertOrientation::LINE_BOTTOM
104    /** aligned at the bottom of the line (anchored to character )
105     */
106    const short LINE_BOTTOM = 9;
107
108};
109
110//=============================================================================
111
112}; }; }; };
113
114/*=============================================================================
115
116=============================================================================*/
117#endif
118