FontTextEffect Property

Gets or sets the font animation effect.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public TextEffect TextEffect { get; set; }

Property Value

Type: TextEffect
Examples
Shows how to apply a visual effect to a run.
Run run = new Run(doc, "Text with effect");
run.Font.TextEffect = TextEffect.SparkleText;
See Also