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

(Global Index)

Syntax

interface XSpreadsheets : com::sun::star::container::XNameContainer ;

Description

represents the collection of sheets in a document.

See also

Spreadsheets

Method Summary

insertNewByName inserts a new sheet into the collection.

moveByName moves a sheet within the collection.

copyByName copies a sheet within the collection.

Known Services Which Export this Interface

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

Method Details



insertNewByName

Syntax

void insertNewByName (
string aName,
short nPosition );

Description

inserts a new sheet into the collection.


moveByName

Syntax

void moveByName (
string aName,
short nDestination );

Description

moves a sheet within the collection.


copyByName

Syntax

void copyByName (
string aName,
string aCopy,
short nDestination );

Description

copies a sheet within the collection.

Top of Page