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

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

interface XPageCursor

Base Interface
com::sun::star::uno::XInterface

Description
makes it possible to perform cursor movements between pages.


Known Services which Export this Interface

com::sun::star::text::TextLayoutCursor A TextLayoutCursor is a TextRange which can travel within a layout of a Text object.

Methods' 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.

Methods' Details

jumpToFirstPage
 
boolean
jumpToFirstPage();
Description
moves the cursor to the first page.
jumpToLastPage
 
boolean
jumpToLastPage();
Description
moves the cursor to the last page.
jumpToPage
 
boolean
jumpToPage(
[ in ] short nPage );

Description
moves the cursor to the specified page.
getPage
 
short
getPage();
Returns
the number of the page within the document of this cursor.
jumpToNextPage
 
boolean
jumpToNextPage();
Description
moves the cursor to the next page.
See also
XPageCursor::jumpToPreviousPage
jumpToPreviousPage
 
boolean
jumpToPreviousPage();
Description
moves the cursor to the previous page.
See also
XPageCursor::jumpToNextPage
jumpToEndOfPage
 
boolean
jumpToEndOfPage();
Description
moves the cursor to the end of the current page.
See also
XPageCursor::jumpToEndOfPreviousPage
jumpToStartOfPage
 
boolean
jumpToStartOfPage();
Description
moves the cursor to the start of the current page.

Top of Page