interface XPageCursor in module com::sun::star::text::

(Global Index)

Syntax

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

Description

makes it possible to perform cursor movements between pages.

Method Summary

jumpToFirstPage moves the cursor to the first page.

jumpToLastPage moves the cursor to the last page.

jumpToPage moves the cursor to the specified page.

getPage

jumpToNextPage moves the cursor to the next page.

jumpToPreviousPage moves the cursor to the previous page.

jumpToEndOfPage moves the cursor to the end of the current page.

jumpToStartOfPage moves the cursor to the start of the current page.

Known Services Which Export this Interface

com::sun::star::text::TextLayoutCursor

Method Details



jumpToFirstPage

Syntax

boolean jumpToFirstPage ();

Description

moves the cursor to the first page.


jumpToLastPage

Syntax

boolean jumpToLastPage ();

Description

moves the cursor to the last page.


jumpToPage

Syntax

boolean jumpToPage (
short nPage );

Description

moves the cursor to the specified page.


getPage

Syntax

short getPage ();

Returns

the number of the page within the document of this cursor.

jumpToNextPage

Syntax

boolean jumpToNextPage ();

Description

moves the cursor to the next page.

See also

XPageCursor::jumpToPreviousPage

jumpToPreviousPage

Syntax

boolean jumpToPreviousPage ();

Description

moves the cursor to the previous page.

See also

XPageCursor::jumpToNextPage

jumpToEndOfPage

Syntax

boolean jumpToEndOfPage ();

Description

moves the cursor to the end of the current page.

See also

XPageCursor::jumpToEndOfPreviousPage

jumpToStartOfPage

Syntax

boolean jumpToStartOfPage ();

Description

moves the cursor to the start of the current page.

Top of Page