summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/style/ParagraphProperties.idl
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2002-08-15 12:33:55 +0000
committerThomas Lange <tl@openoffice.org>2002-08-15 12:33:55 +0000
commitd07d4964e1f74582a1465b4caa8b73c362f3c2ee (patch)
tree52759607a0b1dbab0a980dc7263f53740c7d0cfe /offapi/com/sun/star/style/ParagraphProperties.idl
parentdfa990baa5fc9f95f02e1ca2014f08fc77869546 (diff)
#97643# missing properties added
Diffstat (limited to 'offapi/com/sun/star/style/ParagraphProperties.idl')
-rw-r--r--offapi/com/sun/star/style/ParagraphProperties.idl54
1 files changed, 52 insertions, 2 deletions
diff --git a/offapi/com/sun/star/style/ParagraphProperties.idl b/offapi/com/sun/star/style/ParagraphProperties.idl
index 0bf4b5e5bceb..4216cde1a7f7 100644
--- a/offapi/com/sun/star/style/ParagraphProperties.idl
+++ b/offapi/com/sun/star/style/ParagraphProperties.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: ParagraphProperties.idl,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: mi $ $Date: 2001-10-25 15:50:46 $
+ * last change: $Author: tl $ $Date: 2002-08-15 13:33:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -87,6 +87,9 @@
#ifndef __com_sun_star_table_ShadowFormat_idl__
#include <com/sun/star/table/ShadowFormat.idl>
#endif
+#ifndef __com_sun_star_table_BorderLine_idl__
+#include <com/sun/star/table/BorderLine.idl>
+#endif
//=============================================================================
@@ -384,6 +387,53 @@ service ParagraphProperties
of text lines are considered.
*/
[optional, property] boolean IsForbiddenRules;
+
+ //-------------------------------------------------------------------------
+ /** contains the left border of the object.
+ */
+ [property] com::sun::star::table::BorderLine LeftBorder;
+
+ //-------------------------------------------------------------------------
+ /** contains the right border of the object.
+ */
+ [property] com::sun::star::table::BorderLine RightBorder;
+
+ //-------------------------------------------------------------------------
+ /** contains the top border of the object.
+ */
+ [property] com::sun::star::table::BorderLine TopBorder;
+
+ //-------------------------------------------------------------------------
+ /** contains the bottom border of the object.
+ */
+ [property] com::sun::star::table::BorderLine BottomBorder;
+
+ //-------------------------------------------------------------------------
+ /** contains the distance from the border to the object.
+ */
+ [property] long BorderDistance;
+
+ //-------------------------------------------------------------------------
+ /** contains the distance from the left border to the object.
+ */
+ [property] long LeftBorderDistance;
+
+ //-------------------------------------------------------------------------
+ /** contains the distance from the right border to the object.
+ */
+ [property] long RightBorderDistance;
+
+ //-------------------------------------------------------------------------
+ /** contains the distance from the top border to the object.
+ */
+ [property] long TopBorderDistance;
+
+ //-------------------------------------------------------------------------
+ /** contains the distance from the bottom border to the object.
+ */
+ [property] long BottomBorderDistance;
+
+ //-------------------------------------------------------------------------
};
//=============================================================================