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 PROPORTIONAL
, but the width of each text row is
- also scaled proportional.
+ /** Like PROPORTIONAL
, 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
};