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 .
20 module com
{ module sun
{ module star
{ module text
{
22 /** area of cells within a text table.
24 @see com::sun::star::text::TextTable
26 published service CellRange
28 service com
::sun
::star
::style
::CharacterProperties
;
30 service com
::sun
::star
::style
::CharacterPropertiesAsian
;
32 service com
::sun
::star
::style
::CharacterPropertiesComplex
;
34 service com
::sun
::star
::style
::ParagraphProperties
;
36 [optional] service com
::sun
::star
::style
::ParagraphPropertiesAsian
;
38 [optional] service com
::sun
::star
::style
::ParagraphPropertiesComplex
;
40 interface com
::sun
::star
::table
::XCellRange
;
42 [optional] interface com
::sun
::star
::sheet
::XCellRangeData
;
44 [optional] interface com
::sun
::star
::chart
::XChartDataArray
;
47 /** contains color of the background.
49 [property
] com
::sun
::star
::util
::Color BackColor
;
52 /** contains the filter name of the background graphic.
54 [property
] string BackGraphicFilter
;
57 /** determines the location of the background graphic.
59 [property
] com
::sun
::star
::style
::GraphicLocation BackGraphicLocation
;
62 /** contains the URL of the background graphic.
64 @deprecated as of LibreOffice 6.1 - use BackGraphic instead
66 Note the new behaviour since it this was deprecated:
67 This property can only be set and only external URLs are
68 supported (no more vnd.sun.star.GraphicObject scheme). When an
69 URL is set, then it will load the graphic and set the BackGraphic
72 [property
] string BackGraphicURL
;
74 /** determines if the background color is transparent.
76 [property
] boolean BackTransparent
;
79 /** determines if the first column of the table should be treated as
80 axis labels when a chart is to be created.
82 [property
] boolean ChartColumnAsLabel
;
85 /** determines if the first row of the table should be treated as
86 axis labels when a chart is to be created.
88 [property
] boolean ChartRowAsLabel
;
91 /** contains the number format.
93 [property
] long NumberFormat
;
95 /** contains the graphic of the background.
97 @since LibreOffice 6.1
99 [optional, property
] com
::sun
::star
::graphic
::XGraphic BackGraphic
;
105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */