Aspose::Cells::Drawing::Shape::GetTextEffect method

Shape::GetTextEffect method

Returns a TextEffectFormat object that contains text-effect formatting properties for the specified shape. Applies to Shape objects that represent WordArt.

TextEffectFormat Aspose::Cells::Drawing::Shape::GetTextEffect()

Examples

if (shape.IsWordArt())
{
    TextEffectFormat textEffectFormat = shape.GetTextEffect();
}

See Also