|
Syntax
- void insertTextContent
(
- com::sun::star::text::XTextRange xRange,
- com::sun::star::text::XTextContent xContent,
- boolean bAbsorb )
- raises ( com::sun::star::lang::IllegalArgumentException );
Description
inserts a content, such as a text table, text frame or text
field.
Which contents are accepted is implementation-specific. Some
implementations may only accept contents which were created by the
factory that supplied the same text or the document which contains
the text.
Syntax
- void removeTextContent
(
- com::sun::star::text::XTextContent xContent )
- raises ( com::sun::star::container::NoSuchElementException );
Description
removes the specified content from the text object.
Example
- xDoc.removeTextContent( xDoc.TextTables.MyOwnTableName )
|