summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/table/CellVertJustify2.idl
blob: 31b0d7df36ebf6fabddc98fe55ce2cafe5d50ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef __com_sun_star_table_CellVertJustify_idl__
#define __com_sun_star_table_CellVertJustify_idl__


module com {  module sun {  module star {  module table {


/** specifies how cell contents are aligned vertically.
 */
constants CellVertJustify2
{

    /** default alignment is used.
     */
    const long STANDARD = 0;


    /** contents are aligned with the upper edge of the cell.
     */
    const long TOP = 1;


    /** contents are aligned to the vertical middle of the cell.
     */
    const long CENTER = 2;


    /** contents are aligned to the lower edge of the cell.
     */
    const long BOTTOM = 3;


    /** contents are justified to the cell height.
     */
    const long BLOCK = 4;
};


}; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ource/outdev/polyline.cxx?h=cp-6.0-11&id=15afb15227667aa573a38249d3a24f962ecef9ce'>rendercontext: Add asserts to easily catch the direct rendering cases.Jan Holesovsky 2015-05-20convert ANTIALIASING constants to scoped enumNoel Grandin 2015-01-20Some more loplugin:cstylecast: vclStephan Bergmann 2015-01-12do not set Y line width to 0Luboš Luňák 2014-11-05vcl: renamed OutputDevice::PaintLineGeometryWithEvtlExpand()Chris Sherlock 2014-11-03vcl: merge DrawPolyLineDirect() and drawPolyLineDirectNoAACheck()Chris Sherlock 2014-11-02vcl: Refactor OutputDevice::TryDrawPolyLineDirect()Chris Sherlock 2014-11-02vcl: rename OutputDevice::DrawPolyLineWithLineInfo() to drawPolyLine()Chris Sherlock 2014-04-28VCL: rename TryDrawPolyLineDirectNoAA to TryDrawPolyLineDirectNoAACheckChris Sherlock 2014-04-27VCL: rename OutputDevice::ImplInitFillColor and make it privateChris Sherlock 2014-04-27vcl/outdev/*.cxx cosmetic clean-upNorbert Thiebaud 2014-04-24fdo#74336 wrongly transformed line width - use 0 for heightTomaž Vajngerl 2014-04-25VCL: remove comment, rename ImplInitClipRegion to InitClipRegionChris Sherlock 2014-04-24VCL: Remove unnecessary headers from outdev/polyline.cxxChris Sherlock 2014-04-23Rename OutputDevice::ImplGetGraphics to GetGraphicsChris Sherlock 2014-04-22Rearrange OutputDevice line functionsChris Sherlock 2014-04-17Remove commented out code in polyline.cxxChris Sherlock 2014-04-17Move bezier functionsChris Sherlock 2014-04-16Split outdev2.cxxChris Sherlock