:: com :: sun :: star :: sheet ::

unpublished interface XDrillDownDataSupplier
Usage Restrictions
not published
Description
supplies a filtered subset of the original data source based on filtering criteria. A service that acts as a DataPilot data source can optionally implement this interface to allow drill-down of result data. The method this interface provides is used internally when calling XDataPilotTable2::getDrillDownData or XDataPilotTable2::insertDrillDownSheet. If the data source service does not implement this interface, then the aformentioned two methods will have no effect.
Since
OOo 3.0
See also
DataPilotSource

Methods' Summary
getDrillDownData This method returns filtered subset of the original source data based on a given set of filtering criteria.  
Methods' Details
getDrillDownData
sequence< sequence< any > >
getDrillDownData( [in] sequence< DataPilotFieldFilter >  aFilters );

Description
This method returns filtered subset of the original source data based on a given set of filtering criteria.
Parameter aFilters
filtering criteria
Returns
a filtered subset of the origintal source data as 2-dimensional sequences of . The first row must be the header row. Each com::sun::star::uno::Any instance must contain either ::double value for a numeric cell, or a ::string value for a string cell.
See also
DataPilotFieldFilter, XDataPilotTable2
Top of Page