Shape.TextHorizontalOverflow

Shape.TextHorizontalOverflow property

Gets and sets the text horizontal overflow type of the shape which contains text.

public TextOverflowType TextHorizontalOverflow { get; set; }

Examples


[C#]
if (shape.TextHorizontalOverflow == Aspose.Cells.Drawing.TextOverflowType.Clip)
    shape.TextHorizontalOverflow = Aspose.Cells.Drawing.TextOverflowType.Overflow;

See Also