summaryrefslogtreecommitdiffstats
path: root/offapi
diff options
context:
space:
mode:
authorZolnai Tamás <zolnaitamas2000@gmail.com>2013-08-06 11:14:54 +0200
committerZolnai Tamás <zolnaitamas2000@gmail.com>2013-08-12 10:30:02 +0200
commit3dfd5d794b36a1af49c59f7ab4c5d563ba32ebb0 (patch)
treea904f07e76d6b76b485f026e4157be1cf5e1d942 /offapi
parentCharBrd 5: border padding/spacing (diff)
downloadcore-3dfd5d794b36a1af49c59f7ab4c5d563ba32ebb0.tar.gz
core-3dfd5d794b36a1af49c59f7ab4c5d563ba32ebb0.zip
CharBrd 6: UNO API
Change-Id: I7f93c3ca060ccd91ed52c0a1e8f477ed8e2c1534
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/style/CharacterProperties.idl38
1 files changed, 37 insertions, 1 deletions
diff --git a/offapi/com/sun/star/style/CharacterProperties.idl b/offapi/com/sun/star/style/CharacterProperties.idl
index 8ba1a6196f92..d03a30226617 100644
--- a/offapi/com/sun/star/style/CharacterProperties.idl
+++ b/offapi/com/sun/star/style/CharacterProperties.idl
@@ -23,7 +23,7 @@
#include <com/sun/star/util/Color.idl>
#include <com/sun/star/awt/FontSlant.idl>
#include <com/sun/star/container/XNameContainer.idl>
-
+#include <com/sun/star/table/BorderLine2.idl>
module com { module sun { module star { module style {
@@ -374,6 +374,42 @@ published service CharacterProperties
*/
[optional, property] com::sun::star::container::XNameContainer TextUserDefinedAttributes;
+ /** This property contains the left border of the object.
+ */
+ [property, optional] com::sun::star::table::BorderLine2 CharLeftBorder;
+
+ /** This property contains the right border of the object.
+ */
+ [property, optional] com::sun::star::table::BorderLine2 CharRightBorder;
+
+ /** This property contains the top border of the object.
+ */
+ [property, optional] com::sun::star::table::BorderLine2 CharTopBorder;
+
+ /** This property contains the bottom border of the object.
+ */
+ [property, optional] com::sun::star::table::BorderLine2 CharBottomBorder;
+
+ /** This property contains the distance from the border to the object.
+ */
+ [property, optional] long CharBorderDistance;
+
+ /** This property contains the distance from the left border to the object.
+ */
+ [property, optional] long CharLeftBorderDistance;
+
+ /** This property contains the distance from the right border to the object.
+ */
+ [property, optional] long CharRightBorderDistance;
+
+ /** This property contains the distance from the top border to the object.
+ */
+ [property, optional] long CharTopBorderDistance;
+
+ /** This property contains the distance from the bottom border to the object.
+ */
+ [property, optional] long CharBottomBorderDistance;
+
};
}; }; }; };