update dev300-m58
[ooovba.git] / offapi / com / sun / star / sheet / DataPilotFieldReference.idl
bloba272bd5c0fd71c1e1b5d6a17014908dc21ff32a6
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: DataPilotFieldReference.idl,v $
10 * $Revision: 1.5 $
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_sheet_DataPilotFieldReference_idl__
32 #define __com_sun_star_sheet_DataPilotFieldReference_idl__
34 #ifndef __com_sun_star_sheet_DataPilotFieldReferenceItemType_idl__
35 #include <com/sun/star/sheet/DataPilotFieldReferenceItemType.idl>
36 #endif
38 //=============================================================================
40 module com { module sun { module star { module sheet {
42 //=============================================================================
44 /** controls how a data pilot field's results are shown in relation to
45 a selected reference result.
47 @see com::sun::star::sheet::DataPilotField
49 published struct DataPilotFieldReference
51 //-------------------------------------------------------------------------
53 /** contains the type of the reference.
55 @see com::sun::star::sheet::DataPilotFieldReferenceType
59 long ReferenceType;
61 //-------------------------------------------------------------------------
63 /** contains the reference field
66 string ReferenceField;
68 //-------------------------------------------------------------------------
70 /** selects between a named reference item and using the previous or next
71 item for each item from the reference field.
73 @see com::sun::star::sheet::DataPilotFieldReferenceItemType
77 long ReferenceItemType;
79 //-------------------------------------------------------------------------
81 /** contains the name of the reference item, when the
82 <member>DataPilotFieldReference::ReferenceItemType</member> is NAMED
83 otherwise is empty
86 string ReferenceItemName;
89 //=============================================================================
91 }; }; }; };
93 #endif