Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / chart2 / data / LabelOrigin.idl
blob9557f24fc030d83d97b66b5e2d6f11357ad0d833
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: LabelOrigin.idl,v $
10 * $Revision: 1.3 $
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 ************************************************************************/
31 #ifndef com_sun_star_chart2_data_LabelOrigin_idl
32 #define com_sun_star_chart2_data_LabelOrigin_idl
34 //=============================================================================
36 module com { module sun { module star { module chart2 { module data {
38 //=============================================================================
40 /** is used to specify how the labels have to be created.
42 @see <member>XDataSequence::generateLabel</member>.
44 enum LabelOrigin
46 //-------------------------------------------------------------------------
48 /** If a range spans a single row over more than one column, this
49 parameter has the same effect as ROW. If the range spans a
50 single column over more than one row, this is the same as
51 COLUMN.
53 <p>In case of a range spanning more than one column and row,
54 the shorter range of both should be used (e.g. a spreadsheet
55 range A1:B10 should treat columns as short side).</p>
57 <p>In case of a rectangular range, or a range that is composed
58 of more than one contiguous sub-regions, the short side cannot
59 be determined, thus
60 <member>XDataSequence::generateLabel</member> will return an
61 empty sequence.</p>
63 SHORT_SIDE,
65 //-------------------------------------------------------------------------
67 /** This is exactly the opposite of SHORT_SIDE. I.e., if
68 SHORT_SIDE has the same effect as ROW, LONG_SIDE will have the
69 same effect as COLUMN and the other way round.
71 @see <member>LabelOrigin::SHORT_SIDE</member>
73 LONG_SIDE,
75 //-------------------------------------------------------------------------
77 /** Uses the column name for label generation. A spreadsheet
78 range A1:A6 could, e.g., result in "Column A".
80 <p>If a range consists of more than one column the result of
81 label generation may be empty. Of course, it could also
82 succeed with a string like "Columns A to B".
84 COLUMN,
86 //-------------------------------------------------------------------------
88 /** Uses the column name for label generation. A spreadsheet
89 range A2:D2 could, e.g., result in "Row 2".
91 <p>If a range consists of more than one row the result of
92 label generation may be empty. Of course, it could also
93 succeed with a string like "Rows 1-3".
95 ROW
98 //=============================================================================
100 }; }; }; }; };
102 #endif