Shape.TextVerticalOverflow

Shape.TextVerticalOverflow property

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

public TextOverflowType TextVerticalOverflow { get; set; }

Examples


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

See Also