1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 module com
{ module sun
{ module star
{ module text
{
24 /** represents a single cell within a text table.
26 @see com::sun::star::text::TextTable
30 /** contains the properties of the text table cell.
32 service com
::sun
::star
::text
::CellProperties
;
34 /** contains properties from table cells.
36 <p>All of these properties are either already available in the
38 com::sun::star::text::CellProperties,
39 or get matched against one of those or are implemented
40 non-functional since they serve no purpose for text tables.</p>
42 <p>The complete list is as follows:</p>
44 <li>CellStyle: optional property, not implemented.</li>
45 <li>CellBackColor: matched to "BackColor".</li>
46 <li>IsCellBackgroundTransparent: matched to "BackTransparent".</li>
47 <li>HoriJustify: non-functional implementation.</li>
48 <li>VertJustify: non-functional implementation.</li>
49 <li>IsTextWrapped: non-functional implementation.</li>
50 <li>ParaIndent: non-functional implementation.</li>
51 <li>Orientation: non-functional implementation.</li>
52 <li>RotateAngle: non-functional implementation.</li>
53 <li>RotateReference: non-functional implementation.</li>
54 <li>AsianVerticalMode: optional property, not implemented.</li>
55 <li>TableBorder: non-functional implementation.</li>
56 <li>TopBorder: already available.</li>
57 <li>BottomBorder: already available.</li>
58 <li>LeftBorder: already available.</li>
59 <li>RightBorder: already available.</li>
60 <li>NumberFormat: already available.</li>
61 <li>ShadowFormat: non-functional implementation.</li>
62 <li>CellProtection: non-functional implementation.</li>
67 service com
::sun
::star
::table
::CellProperties
;
70 /** provides access to the cell contents.
72 interface com
::sun
::star
::table
::XCell
;
75 /** provides access to formatted and unformatted text contents.
77 interface com
::sun
::star
::text
::XText
;
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */