diff options
author | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2013-08-12 18:49:06 +0200 |
---|---|---|
committer | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2013-08-18 09:49:49 +0200 |
commit | 54d13384deaeb545011c12720a131554bf40da7d (patch) | |
tree | f5a89c8674f417ca4b71359bb6941307a845934c /offapi | |
parent | 1dc74ae1f75b7d02953032a20e7e3c7c72c7dfd8 (diff) |
Add since to character border idl
Change-Id: I06064b1145578579c8748b6e5326090303aa670e
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/style/CharacterProperties.idl | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/offapi/com/sun/star/style/CharacterProperties.idl b/offapi/com/sun/star/style/CharacterProperties.idl index d03a30226617..920c55dcb726 100644 --- a/offapi/com/sun/star/style/CharacterProperties.idl +++ b/offapi/com/sun/star/style/CharacterProperties.idl @@ -375,39 +375,57 @@ published service CharacterProperties [optional, property] com::sun::star::container::XNameContainer TextUserDefinedAttributes; /** This property contains the left border of the object. - */ + * + * @since LibreOffice 4.2 + **/ [property, optional] com::sun::star::table::BorderLine2 CharLeftBorder; /** This property contains the right border of the object. - */ + * + * @since LibreOffice 4.2 + **/ [property, optional] com::sun::star::table::BorderLine2 CharRightBorder; /** This property contains the top border of the object. - */ + * + * @since LibreOffice 4.2 + **/ [property, optional] com::sun::star::table::BorderLine2 CharTopBorder; /** This property contains the bottom border of the object. - */ + * + * @since LibreOffice 4.2 + **/ [property, optional] com::sun::star::table::BorderLine2 CharBottomBorder; /** This property contains the distance from the border to the object. - */ + * + * @since LibreOffice 4.2 + **/ [property, optional] long CharBorderDistance; /** This property contains the distance from the left border to the object. - */ + * + * @since LibreOffice 4.2 + **/ [property, optional] long CharLeftBorderDistance; /** This property contains the distance from the right border to the object. - */ + * + * @since LibreOffice 4.2 + **/ [property, optional] long CharRightBorderDistance; /** This property contains the distance from the top border to the object. - */ + * + * @since LibreOffice 4.2 + **/ [property, optional] long CharTopBorderDistance; /** This property contains the distance from the bottom border to the object. - */ + * + * @since LibreOffice 4.2 + **/ [property, optional] long CharBottomBorderDistance; }; |