diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2023-07-05 13:06:15 +0200 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2023-07-05 15:45:55 +0200 |
commit | a67675e7e248e056637be8b70d620379cdfb682e (patch) | |
tree | 317f2bd42a831179b72693a2c842bda3b7499a20 /offapi | |
parent | 8dbbeadbc7eabe76736d37fe3bcafe3e537f0bc0 (diff) |
offapi: add Title/Description properties from CWS aw038 (OOo 2.2)
Change-Id: I2a851ef76b840d1fa5479dcb182a63590a2d4065
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154052
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/drawing/Shape.idl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/offapi/com/sun/star/drawing/Shape.idl b/offapi/com/sun/star/drawing/Shape.idl index e2faa4fbec48..118031488426 100644 --- a/offapi/com/sun/star/drawing/Shape.idl +++ b/offapi/com/sun/star/drawing/Shape.idl @@ -182,6 +182,26 @@ published service Shape @since LibreOffice 4.3 */ [optional, property] short RelativeWidthRelation; + + /** contains short title for the object + + <p>This short title is visible as an alternative tag in HTML format. + Accessibility tools can read this text.</p> + + @since OOo 2.2 + */ + [optional, property] string Title; + + /** contains description for the object + + <p>The long description text can be entered to describe an object in + more detail to users with screen reader software. The description is + visible as an alternative tag for accessibility tools.</p> + + @since OOo 2.2 + */ + [optional, property] string Description; + }; |