TextEffect

TextEffect enumeration

Animation effect for text runs.

public enum TextEffect

Values

NameValueDescription
None0
LasVegasLights1
BlinkingBackground2
SparkleText3
MarchingBlackAnts4
MarchingRedAnts5
Shimmer6

Examples

Shows how to apply a visual effect to a run.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

builder.Font.Size = 36;
builder.Font.TextEffect = TextEffect.SparkleText;

builder.Writeln("Text with a sparkle effect.");

// Older versions of Microsoft Word only support font animation effects.
doc.Save(ArtifactsDir + "Font.SparklingText.doc");

See Also