diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-02-24 11:43:39 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-02-24 12:16:14 +0100 |
commit | 43d7f4e3640c5e370fd1204739c2b0c7eb5f40e4 (patch) | |
tree | 1d21c29683fa0e17c185163be2979647b7106a18 | |
parent | 7b9aa420d368e080431f230f56993bcd8b324829 (diff) |
offapi: document the 4 new properties which are no longer read-only
Change-Id: Ia2844af91159bf4a512fcb70883fc6a1eddfce35
-rw-r--r-- | offapi/com/sun/star/drawing/Shape.idl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/offapi/com/sun/star/drawing/Shape.idl b/offapi/com/sun/star/drawing/Shape.idl index 64f8ab4901d1..daa87b29e88c 100644 --- a/offapi/com/sun/star/drawing/Shape.idl +++ b/offapi/com/sun/star/drawing/Shape.idl @@ -164,6 +164,36 @@ published service Shape first moved out from this grab bag to a separate property.</p> */ [optional, property] sequence<com::sun::star::beans::PropertyValue> InteropGrabBag; + + /** contains the relative height of the object. + <p> It is only valid if it is greater than zero.</p> + + @since LibreOffice 4.3 + */ + [optional, property] short RelativeHeight; + + /** contains the relative width of the object. + <p> It is only valid if it is greater than zero. </p> + + @since LibreOffice 4.3 + */ + [optional, property] short RelativeWidth; + + /** contains the relation of the relative height of the object. + <p> It is only valid if RelativeHeight is greater than zero.</p> + + @see com::sun::star::text::RelOrientation + @since LibreOffice 4.3 + */ + [optional, property] short RelativeHeightRelation; + + /** contains the relation of the relative width of the object. + <p> It is only valid if RelativeWidth is greater than zero.</p> + + @see com::sun::star::text::RelOrientation + @since LibreOffice 4.3 + */ + [optional, property] short RelativeWidthRelation; }; |