Shape.TextEffect

Shape.TextEffect property

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

public TextEffectFormat TextEffect { get; }

Examples


[C#]
if(shape.IsWordArt)
{
    Aspose.Cells.Drawing.TextEffectFormat textEffectFormat = shape.TextEffect;
}

See Also