TextEffect
TextEffect enumeration
Effetto di animazione per le esecuzioni di testo.
public enum TextEffect
I valori
Nome | Valore | Descrizione |
---|---|---|
None | 0 | |
LasVegasLights | 1 | |
BlinkingBackground | 2 | |
SparkleText | 3 | |
MarchingBlackAnts | 4 | |
MarchingRedAnts | 5 | |
Shimmer | 6 |
Esempi
Mostra come applicare un effetto visivo a una corsa.
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.");
// Le versioni precedenti di Microsoft Word supportano solo gli effetti di animazione dei caratteri.
doc.Save(ArtifactsDir + "Font.SparklingText.doc");
Guarda anche
- spazio dei nomi Aspose.Words
- assemblea Aspose.Words