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

interface XParagraphCursor
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XTextRange
    |
    +-XTextCursor
       |
       +-XParagraphCursor
Description
makes it possible to move paragraph by paragraph.

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