interface XDataPilotDescriptor in module com::sun::star::sheet::

(Global Index)

Syntax

interface XDataPilotDescriptor : com::sun::star::container::XNamed ;

Description

represents a description of a data pilot table.

See also

DataPilotDescriptor

See also

DataPilotTable

Method 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.

Known Services Which Export this Interface

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

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

Method Details



getTag

Syntax

string getTag ();

Description

returns an additional string stored in the data pilot table.


setTag

Syntax

void setTag (
string aTag );

Description

sets an additional string stored in the data pilot table.


getSourceRange

Syntax

com::sun::star::table::CellRangeAddress getSourceRange ();

Description

returns the cell range containing the data for the data pilot table.


setSourceRange

Syntax

void setSourceRange (
com::sun::star::table::CellRangeAddress aSourceRange );

Description

sets the cell range containing the data for the data pilot table.


getFilterDescriptor

Syntax

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

Syntax

com::sun::star::container::XIndexAccess getDataPilotFields ();

Description

returns the collection of all the data pilot fields.


getColumnFields

Syntax

com::sun::star::container::XIndexAccess getColumnFields ();

Description

returns the collection of the data pilot fields used as column fields.


getRowFields

Syntax

com::sun::star::container::XIndexAccess getRowFields ();

Description

returns the collection of the data pilot fields used as row fields.


getPageFields

Syntax

com::sun::star::container::XIndexAccess getPageFields ();

Description

returns the collection of the data pilot fields used as page fields.


getDataFields

Syntax

com::sun::star::container::XIndexAccess getDataFields ();

Description

returns the collection of the data pilot fields used as data fields.


getHiddenFields

Syntax

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