diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-07-14 07:38:36 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-07-14 07:38:36 +0000 |
commit | 74480ffcac88ac11702b599a7f7789a6ed9b240f (patch) | |
tree | 480a29f1a9e805ebec9deb18fb2c0cb6c08a631a | |
parent | 7518217547e49f3f14bbd92c04531d5d5b414955 (diff) |
INTEGRATION: CWS tl21 (1.16.98); FILE MERGED
2006/05/31 10:13:08 tl 1.16.98.2: #i50628# add description of property UserDefinedAttributes to slected services by using css.xml.UserDefinedAttributesSupplier
2006/05/12 08:47:29 tl 1.16.98.1: #i53534# documentation fixed
-rw-r--r-- | offapi/com/sun/star/text/TextTable.idl | 33 |
1 files changed, 8 insertions, 25 deletions
diff --git a/offapi/com/sun/star/text/TextTable.idl b/offapi/com/sun/star/text/TextTable.idl index 92afc2d5c090..533d2ac08a5b 100644 --- a/offapi/com/sun/star/text/TextTable.idl +++ b/offapi/com/sun/star/text/TextTable.idl @@ -4,9 +4,9 @@ * * $RCSfile: TextTable.idl,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: rt $ $Date: 2005-11-11 13:24:36 $ + * last change: $Author: obo $ $Date: 2006-07-14 08:38:36 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -85,6 +85,9 @@ #ifndef __com_sun_star_sheet_XCellRangeData_idl__ #include <com/sun/star/sheet/XCellRangeData.idl> #endif +#ifndef _com_sun_star_xml_UserDefinedAttributesSupplier_idl_ +#include <com/sun/star/xml/UserDefinedAttributesSupplier.idl> +#endif //============================================================================= @@ -95,29 +98,7 @@ /** is a table of text cells which is anchored to a surrounding text. - - - <p>If the document in which a table is to be inserted has its own - <type scope="com::sun::star::lang">XMultiServiceFactory</type>, this must be - used to create the instance. - </p> - - <p>If a descriptor is used, a descriptor created by the same - <type scope="com::sun::star::lang">XMultiServiceFactory</type> must be used. - </p> - - @example Create and insert a TextTable via a TextTableDescriptor: - - <listing> - xTable = xTextDoc.createInstance( "com.sun.star.text.TextTable" ) - xTable.initialize(5, 8) - xTable.HoriOrient = 0 'com::sun::star::text::HoriOrientation::NONE - xTable.LeftMargin = 2000 - xTable.RightMargin = 1500 - xTextDoc.getText.insertTextContent( xTextRange, xTable, false ) - </listing> - - Create and insert a TextTable directly (may flicker): + Create and insert a TextTable: <listing> xTable = xTextDoc.createInstance( "com.sun.star.text.TextTable" ) @@ -149,6 +130,8 @@ published service TextTable { service com::sun::star::text::TextContent; + [optional] service com::sun::star::xml::UserDefinedAttributesSupplier; + interface com::sun::star::text::XTextTable; interface com::sun::star::container::XNamed; |