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

interface XDrawPageDuplicator
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XDrawPageDuplicator
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
makes it possible to duplicate pages within the same document.
Developers Guide
9.3.1 Drawing Documents and Presentation Documents - Working with Drawing Documents - Drawing Document - Page Handling

Methods' Summary
duplicate creates a duplicate of a ::com::sun::star::drawing::DrawPage or ::com::sun::star::drawing::MasterPage , including the ::com::sun::star::drawing::Shape s on that page and inserts it into the same model.  
Methods' Details
duplicate
::com::sun::star::drawing::XDrawPage
duplicate( [in] ::com::sun::star::drawing::XDrawPage  xPage );

Description
creates a duplicate of a ::com::sun::star::drawing::DrawPage or ::com::sun::star::drawing::MasterPage , including the ::com::sun::star::drawing::Shape s on that page and inserts it into the same model.
Parameter xPage
that is the source ::com::sun::star::drawing::DrawPage or ::com::sun::star::drawing::MasterPage that will be duplicated
Returns
a newly created ::com::sun::star::drawing::DrawPage or ::com::sun::star::drawing::MasterPage that as all properties and copies of all ::com::sun::star::drawing::Shape s from the source page.
Top of Page