summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text/XText.idl
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-01-20 12:22:06 +0000
committerOliver Bolte <obo@openoffice.org>2004-01-20 12:22:06 +0000
commitea050622f3a59b6aec9e86faef01f79afd5c9789 (patch)
tree8c51e4efe1ffdf5b71e2d18b0e5ae52c99ca0f4d /offapi/com/sun/star/text/XText.idl
parentb75a103bfb91cb567102284fc483fbeb60bb3d6c (diff)
INTEGRATION: CWS tlapi2 (1.7.212); FILE MERGED
2003/12/09 10:01:24 tl 1.7.212.1: #i22551# documentation added
Diffstat (limited to 'offapi/com/sun/star/text/XText.idl')
-rw-r--r--offapi/com/sun/star/text/XText.idl30
1 files changed, 14 insertions, 16 deletions
diff --git a/offapi/com/sun/star/text/XText.idl b/offapi/com/sun/star/text/XText.idl
index e059a91e4f93..bb6a11ed04ec 100644
--- a/offapi/com/sun/star/text/XText.idl
+++ b/offapi/com/sun/star/text/XText.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XText.idl,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 13:57:09 $
+ * last change: $Author: obo $ $Date: 2004-01-20 13:22:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -88,7 +88,6 @@
//=============================================================================
-// DocMerge from idl: interface com::sun::star::text::XText
/** extends a <type>XSimpleText</type> by the capability of inserting
<type>XTextContent</type>s.
*/
@@ -96,18 +95,26 @@ interface XText: com::sun::star::text::XSimpleText
{
//-------------------------------------------------------------------------
- // DocMerge from xml: method com::sun::star::text::XText::insertTextContent
/** inserts a content, such as a text table, text frame or text
field.
-
-
<p>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.
-
</p>
+
+ @param xRange
+ specifies the position of insertion.
+
+ @param xContent
+ the text content to be inserted.
+
+ @param bAbsorb
+ specifies whether the text spanned by <var>xRange</var> will be
+ replaced. If <TRUE/> then the content of <var>xRange</var> will
+ be replaced by <var>xContent</var>, otherwise <var>xContent</var>
+ will be inserted at the end of <var>xRange</var>.
*/
void insertTextContent( [in] com::sun::star::text::XTextRange xRange,
[in] com::sun::star::text::XTextContent xContent,
@@ -116,17 +123,8 @@ interface XText: com::sun::star::text::XSimpleText
//-------------------------------------------------------------------------
- // DocMerge from xml: method com::sun::star::text::XText::removeTextContent
/** removes the specified content from the text object.
-
-
-
-
-
-
-
-
@example xDoc.removeTextContent( xDoc.TextTables.MyOwnTableName )
*/
void removeTextContent( [in] com::sun::star::text::XTextContent xContent )