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

(Global Index)

[ DEPRECATED ]

Syntax

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

Description

makes it possible to remove text contents before or after existing text contents.

Method Summary

removeTextContentBefore removes the text content that preceeds the argument.

removeTextContentAfter removes the text content that follows the argument.

Method Details



removeTextContentBefore

Syntax

void removeTextContentBefore (
com::sun::star::text::XTextContent xSuccessor )
raises ( com::sun::star::lang::IllegalArgumentException );

Description

removes the text content that preceeds the argument.

This is helpful to remove empty paragraphs before text tables.


removeTextContentAfter

Syntax

void removeTextContentAfter (
com::sun::star::text::XTextContent xPredecessor )
raises ( com::sun::star::lang::IllegalArgumentException );

Description

removes the text content that follows the argument.

This is helpful to remove empty paragraphs followin text tables espacially in headers, footers or text frames.

Top of Page