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

interface XDrawView
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XDrawView
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
is implemented by views that display ::com::sun::star::drawing::DrawPage s or ::com::sun::star::drawing::MasterPage s.

Methods' Summary
setCurrentPage changes the current page.  
getCurrentPage returns the current page.  
Methods' Details
setCurrentPage
void
setCurrentPage( [in] ::com::sun::star::drawing::XDrawPage  xPage );

Description
changes the current page.
Parameter xPage
this ::com::sun::star::drawing::DrawPage or ::com::sun::star::drawing::MasterPage will be displayed inside this view.
getCurrentPage
::com::sun::star::drawing::XDrawPage
getCurrentPage();

Description
returns the current page.
Returns
the ::com::sun::star::drawing::DrawPage or ::com::sun::star::drawing::MasterPage that is currently displayed.
Top of Page