Shape.TextVerticalAlignment

Shape.TextVerticalAlignment property

Gets and sets the text vertical alignment type of the shape.

public TextAlignmentType TextVerticalAlignment { get; set; }

Examples


[C#]
if (shape.TextVerticalAlignment == Aspose.Cells.TextAlignmentType.Bottom)
    shape.TextVerticalAlignment = Aspose.Cells.TextAlignmentType.Center;

See Also