diff options
author | Jacobo Aragunde Pérez <jaragunde@igalia.com> | 2013-11-27 10:39:18 +0100 |
---|---|---|
committer | Jacobo Aragunde Pérez <jaragunde@igalia.com> | 2013-12-04 18:52:02 +0100 |
commit | 8a631e4718fbd7e6a393d93b006fc693df73a89b (patch) | |
tree | 449dc40efc94f17df4d4f7c5d9c8b648c0b471b8 /offapi/com/sun/star/style | |
parent | 73cf3fd42e2d852762ad9afd9ea4597213f73f66 (diff) |
sw: add CharInteropGrabBag uno property to characters
Change-Id: I2c6d8b1e4ef6df6a6662d5db89e67e5fba3c6ade
Diffstat (limited to 'offapi/com/sun/star/style')
-rw-r--r-- | offapi/com/sun/star/style/CharacterProperties.idl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/offapi/com/sun/star/style/CharacterProperties.idl b/offapi/com/sun/star/style/CharacterProperties.idl index b4dbf629ce07..aadd7a43f08b 100644 --- a/offapi/com/sun/star/style/CharacterProperties.idl +++ b/offapi/com/sun/star/style/CharacterProperties.idl @@ -25,6 +25,7 @@ #include <com/sun/star/container/XNameContainer.idl> #include <com/sun/star/table/BorderLine2.idl> #include <com/sun/star/table/ShadowFormat.idl> +#include <com/sun/star/beans/PropertyValue.idl> module com { module sun { module star { module style { @@ -441,6 +442,16 @@ published service CharacterProperties **/ [optional, property] com::sun::star::util::Color CharHighlight; + /** Grab bag of character properties, used as a string-any map for interim interop purposes. + + @since LibreOffice 4.2 + + <p>This property is intentionally not handled by the ODF filter. Any + member that should be handled there should be first moved out from this grab + bag to a separate property.</p> + */ + [optional, property] sequence<com::sun::star::beans::PropertyValue> CharInteropGrabBag; + }; }; }; }; }; |