Aspose::Cells::Drawing::Texts::ShapeTextAlignment::SetTextVerticalOverflow method

ShapeTextAlignment::SetTextVerticalOverflow method

Gets and sets the text vertical overflow type of the text box.

void Aspose::Cells::Drawing::Texts::ShapeTextAlignment::SetTextVerticalOverflow(TextOverflowType value)

Examples

if (shapeTextAlignment.GetTextVerticalOverflow() == TextOverflowType::Overflow)
{
    shapeTextAlignment.SetTextVerticalOverflow(TextOverflowType::Clip);
}

See Also