Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XDataPilotDescriptor

Base Interface
com::sun::star::container::XNamed

Description
represents a description of a data pilot table.
See also
com::sun::star::sheet::DataPilotDescriptor
See also
com::sun::star::sheet::DataPilotTable


Known Services which Export this Interface

com::sun::star::sheet::DataPilotDescriptor This is a description of the layout of a data pilot table.
com::sun::star::sheet::DataPilotTable a data pilot table on a spreadsheet.

Methods' Summary

getTag returns an additional string stored in the data pilot table.
setTag sets an additional string stored in the data pilot table.
getSourceRange returns the cell range containing the data for the data pilot table.
setSourceRange sets the cell range containing the data for the data pilot table.
getFilterDescriptor returns the filter descriptor specifying which data from the source cell range are used for the data pilot table.
getDataPilotFields returns the collection of all the data pilot fields.
getColumnFields returns the collection of the data pilot fields used as column fields.
getRowFields returns the collection of the data pilot fields used as row fields.
getPageFields returns the collection of the data pilot fields used as page fields.
getDataFields returns the collection of the data pilot fields used as data fields.
getHiddenFields returns the collection of the data pilot fields not used as column, row, page, or data fields.

Methods' Details

getTag
 
string
getTag();
Description
returns an additional string stored in the data pilot table.
setTag
 
void
setTag(
[ in ] string aTag );

Description
sets an additional string stored in the data pilot table.
getSourceRange
 
com::sun::star::table::CellRangeAddress
getSourceRange();
Description
returns the cell range containing the data for the data pilot table.
setSourceRange
 
void
setSourceRange(
[ in ] com::sun::star::table::CellRangeAddress aSourceRange );

Description
sets the cell range containing the data for the data pilot table.
getFilterDescriptor
 
com::sun::star::sheet::XSheetFilterDescriptor
getFilterDescriptor();
Description
returns the filter descriptor specifying which data from the source cell range are used for the data pilot table.
getDataPilotFields
 
com::sun::star::container::XIndexAccess
getDataPilotFields();
Description
returns the collection of all the data pilot fields.
getColumnFields
 
com::sun::star::container::XIndexAccess
getColumnFields();
Description
returns the collection of the data pilot fields used as column fields.
getRowFields
 
com::sun::star::container::XIndexAccess
getRowFields();
Description
returns the collection of the data pilot fields used as row fields.
getPageFields
 
com::sun::star::container::XIndexAccess
getPageFields();
Description
returns the collection of the data pilot fields used as page fields.
getDataFields
 
com::sun::star::container::XIndexAccess
getDataFields();
Description
returns the collection of the data pilot fields used as data fields.
getHiddenFields
 
com::sun::star::container::XIndexAccess
getHiddenFields();
Description
returns the collection of the data pilot fields not used as column, row, page, or data fields.

Top of Page