summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2017-10-17 22:44:26 +0200
committerMichael Stahl <mstahl@redhat.com>2017-10-18 12:34:03 +0200
commit8304de4701eca8a41f0dd70c84e437707cbb43cf (patch)
tree2e5d38a153ee060fa048e09121d46815a4e35a5e /offapi
parentafe4d2527ec72e7493a2b1431559652ef45bebab (diff)
offapi: clarify documentation of TextFitToSizeType
Change-Id: Iae2ee1e77d9cdc0b98241c47e009d37a9e72e000
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/drawing/TextFitToSizeType.idl20
1 files changed, 10 insertions, 10 deletions
diff --git a/offapi/com/sun/star/drawing/TextFitToSizeType.idl b/offapi/com/sun/star/drawing/TextFitToSizeType.idl
index 3e285f74cf06..e70a63c9ae82 100644
--- a/offapi/com/sun/star/drawing/TextFitToSizeType.idl
+++ b/offapi/com/sun/star/drawing/TextFitToSizeType.idl
@@ -28,25 +28,25 @@
*/
published enum TextFitToSizeType
{
- /** the text size is only defined by the font properties
+ /** The text size is only defined by the font properties.
*/
NONE,
-
- /** if the shape is scaled, the text character size is scaled proportional
+ /** The font is scaled up or down proportionally to fit the
+ size of the shape. This may scale anisotropically.
+ No AutoGrow and no Auto line-breaks in this case.
*/
PROPORTIONAL,
-
- /** like <code>PROPORTIONAL</code>, but the width of each text row is
- also scaled proportional.
+ /** Like <code>PROPORTIONAL</code>, but each line of text
+ is separately scaled proportionally to fit the width.
+ No AutoGrow and no Auto line-breaks in this case.
*/
ALLLINES,
-
- /** if the shape is scaled, the font is scaled isotropically to
- fit the available space. Auto line-breaks will keep working
- */
+ /** The font is scaled down (never up!) isotropically to fit the
+ available space. Auto line-breaks will keep working.
+ */
AUTOFIT
};