TextDmlEffect
TextDmlEffect enumeration
Dml text effect for text runs.
public enum TextDmlEffect
Values
| Name | Value | Description |
|---|---|---|
| Glow | 0 | Glow effect, in which a color blurred outline is added outside the edges of the object. |
| Fill | 1 | Fill overlay effect. |
| Shadow | 2 | Shadow effect. |
| Outline | 3 | Outline effect. |
| Effect3D | 4 | 3D effect. |
| Reflection | 5 | Reflection effect. |
Examples
Shows how to check if a run displays a DrawingML text effect.
Document doc = new Document(MyDir + "DrawingML text effects.docx");
RunCollection runs = doc.FirstSection.Body.FirstParagraph.Runs;
Assert.That(runs[0].Font.HasDmlEffect(TextDmlEffect.Shadow), Is.True);
Assert.That(runs[1].Font.HasDmlEffect(TextDmlEffect.Shadow), Is.True);
Assert.That(runs[2].Font.HasDmlEffect(TextDmlEffect.Reflection), Is.True);
Assert.That(runs[3].Font.HasDmlEffect(TextDmlEffect.Effect3D), Is.True);
Assert.That(runs[4].Font.HasDmlEffect(TextDmlEffect.Fill), Is.True);
See Also
- namespace Aspose.Words
- assembly Aspose.Words