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

unpublished interface XParagraphAppend
Usage Restrictions
not published
Description
.

Methods' Summary
finishParagraph appends a new and empty paragraph at the end of the text.  
finishParagraphInsert inserts a new and empty paragraph to the text at a given position.  
Methods' Details
finishParagraph
XTextRange
finishParagraph( [in] ::com::sun::star::beans::PropertyValues  CharacterAndParagraphProperties )
raises( ::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::beans::UnknownPropertyException );

Description
appends a new and empty paragraph at the end of the text.

The properties are applied to the last paragraph before the new paragraph is inserted.

Parameter CharacterAndParagraphProperties
can contain all the properties defined by the service
finishParagraphInsert
XTextRange
finishParagraphInsert( [in] ::com::sun::star::beans::PropertyValues  CharacterAndParagraphProperties,
[in] XTextRange  TextRange )
raises( ::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::beans::UnknownPropertyException );

Description
inserts a new and empty paragraph to the text at a given position.

The properties are applied to the last paragraph before the new paragraph is inserted.

Parameter CharacterAndParagraphProperties
can contain all the properties defined by the service
Parameter TextRange
specifies the position of the insertion.
Since
LibreOffice 4.0
Top of Page