interface XDrawView in module com::sun::star::drawing::

(Global Index)

Syntax

interface XDrawView : com::sun::star::uno::XInterface ;

Description

is implemented by views that display DrawPage s or MasterPage s.

Method Summary

setCurrentPage changes the current page.

getCurrentPage returns the current page.

Known Services Which Export this Interface

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

Method Details



setCurrentPage

Syntax

void setCurrentPage (
com::sun::star::drawing::XDrawPage xPage );

Description

changes the current page.

Parameter xPage

this DrawPage or MasterPage will be displayed inside this view.

getCurrentPage

Syntax

com::sun::star::drawing::XDrawPage getCurrentPage ();

Description

returns the current page.

Returns

the DrawPage or MasterPage that is currently displayed.
Top of Page