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

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

interface XParagraphCursor

Base Interface
com::sun::star::text::XTextCursor

Description
makes it possible to move paragraph by paragraph.


Known Services which Export this Interface

com::sun::star::text::TextCursor A TextCursor is a TextRange which can be moved within a Text object.

Methods' Summary

isStartOfParagraph determines if the cursor is positioned at the start of a paragraph.
isEndOfParagraph determines if the cursor is positioned at the end of a paragraph.
gotoStartOfParagraph moves the cursor to the start of the current paragraph.
gotoEndOfParagraph moves the cursor to the end of the current paragraph.
gotoNextParagraph moves the cursor to the next paragraph.
gotoPreviousParagraph moves the cursor to the previous paragraph.

Methods' Details

isStartOfParagraph
 
boolean
isStartOfParagraph();
Description
determines if the cursor is positioned at the start of a paragraph.
isEndOfParagraph
 
boolean
isEndOfParagraph();
Description
determines if the cursor is positioned at the end of a paragraph.
gotoStartOfParagraph
 
boolean
gotoStartOfParagraph(
[ in ] boolean bExpand );

Description
moves the cursor to the start of the current paragraph.
gotoEndOfParagraph
 
boolean
gotoEndOfParagraph(
[ in ] boolean bExpand );

Description
moves the cursor to the end of the current paragraph.
gotoNextParagraph
 
boolean
gotoNextParagraph(
[ in ] boolean bExpand );

Description
moves the cursor to the next paragraph.
gotoPreviousParagraph
 
boolean
gotoPreviousParagraph(
[ in ] boolean bExpand );

Description
moves the cursor to the previous paragraph.

Top of Page