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 sheet
{
24 /** provides access to the layout settings of a data pilot table.
26 <p>This interface extends the interface
27 com::sun::star::container::XNamed which provides
28 access to the name of the data pilot table used e.g. in collections.</p>
30 @see com::sun::star::sheet::DataPilotDescriptor
31 @see com::sun::star::sheet::DataPilotTable
33 published
interface XDataPilotDescriptor
: com
::sun
::star
::container
::XNamed
36 /** returns an additional string stored in the data pilot table.
41 /** sets an additional string stored in the data pilot table.
43 void setTag
( [in] string aTag
);
46 /** returns the cell range containing the data for the data pilot table.
48 com
::sun
::star
::table
::CellRangeAddress getSourceRange
();
51 /** sets the cell range containing the data for the data pilot table.
54 [in] com
::sun
::star
::table
::CellRangeAddress aSourceRange
);
57 /** returns the filter descriptor specifying which data from the
58 source cell range are used for the data pilot table.
60 com
::sun
::star
::sheet
::XSheetFilterDescriptor getFilterDescriptor
();
63 /** returns the collection of all the data pilot fields.
65 com
::sun
::star
::container
::XIndexAccess getDataPilotFields
();
68 /** returns the collection of the data pilot fields used as column fields.
70 @see com::sun::star::sheet::DataPilotFields
72 com
::sun
::star
::container
::XIndexAccess getColumnFields
();
75 /** returns the collection of the data pilot fields used as row fields.
77 @see com::sun::star::sheet::DataPilotFields
79 com
::sun
::star
::container
::XIndexAccess getRowFields
();
82 /** returns the collection of the data pilot fields used as page fields.
84 @see com::sun::star::sheet::DataPilotFields
86 com
::sun
::star
::container
::XIndexAccess getPageFields
();
89 /** returns the collection of the data pilot fields used as data fields.
91 @see com::sun::star::sheet::DataPilotFields
93 com
::sun
::star
::container
::XIndexAccess getDataFields
();
96 /** returns the collection of the data pilot fields not used as
97 column, row, page, or data fields.
99 @see com::sun::star::sheet::DataPilotFields
101 com
::sun
::star
::container
::XIndexAccess getHiddenFields
();
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */