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

interface XDataPilotTables
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::container::XElementAccess
    |
    +-::com::sun::star::container::XNameAccess
       |
       +-XDataPilotTables
Description
provides access to the data pilot tables via name and inserting and removing data pilot tables.

This interface extends the interface ::com::sun::star::container::XNameAccess which provides access to existing data pilot tables in the collection.

See also
DataPilotTables
See also
DataPilotTable

Methods' Summary
createDataPilotDescriptor creates a data pilot descriptor.
insertNewByName creates a new data pilot table and adds it to the collection.
removeByName deletes a data pilot table from the collection.
Methods' Details
createDataPilotDescriptor
XDataPilotDescriptor
createDataPilotDescriptor();
 
 

Description
creates a data pilot descriptor.

This descriptor can be used with XDataPilotTables::addTable .

See also
DataPilotDescriptor
insertNewByName
void
insertNewByName(
 
[in] string
[in] ::com::sun::star::table::CellAddress
[in] XDataPilotDescriptor
 
aName,
aOutputAddress,
xDescriptor );

Description
creates a new data pilot table and adds it to the collection.
Parameter aName
the name of the data pilot table used in the collection.
Parameter aAoutputAddress
the top left cell of the location of the data pilot table in the spreadsheet document.
Parameter xDescriptor
the descriptor containing the settings of the data pilot table.
See also
DataPilotDescriptor
removeByName
void
removeByName(
 
[in] string
 
aName );

Description
deletes a data pilot table from the collection.
Top of Page