Gets or sets the font animation effect.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic TextEffect TextEffect { get; set; }
Public Property TextEffect As TextEffect
Get
Set
public:
property TextEffect TextEffect {
TextEffect get ();
void set (TextEffect value);
}
member TextEffect : TextEffect with get, set
Property Value
Type:
TextEffect
ExamplesShows how to apply a visual effect to a run.
Run run = new Run(doc, "Text with effect");
run.Font.TextEffect = TextEffect.SparkleText;
See Also