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

com :: sun :: star :: drawing ::

interface XDrawPages

Base Interface
com::sun::star::container::XIndexAccess

Description
gives access to a container of DrawPage s or MasterPage s.

The pages are stored in an index container. The order is determined by the index. You usualy get this interface if you use the or the XMasterPagesSupplier at a model that contains DrawPage s or MasterPage s



Known Services which Export this Interface

com::sun::star::drawing::DrawPages provides access to a container of DrawPage s and makes it possible for you to manipulate them.
com::sun::star::drawing::MasterPages provides access to a container of MasterPage s and makes it possible for them to be manipulated.

Methods' Summary

insertNewByIndex creates and inserts a new DrawPage or MasterPage into this container
remove removes a DrawPage or MasterPage from this container.

Methods' Details

insertNewByIndex
 
com::sun::star::drawing::XDrawPage
insertNewByIndex(
[ in ] long nIndex );

Description
creates and inserts a new DrawPage or MasterPage into this container
Parameter nIndex
the index at which the newly created DrawPage or MasterPage will be inserted.
Returns
the newly created and already inserted DrawPage or MasterPage .
remove
 
void
remove(
[ in ] com::sun::star::drawing::XDrawPage xPage );

Description
removes a DrawPage or MasterPage from this container.
Parameter xPage
this DrawPage or MasterPage must be contained and will be removed from this container. It will also be disposed and shouldn't be used any further.

Top of Page