HasDmlEffect

Font.HasDmlEffect method

Kontrollerar om en viss DrawingML-texteffekt tillämpas.

public bool HasDmlEffect(TextDmlEffect dmlEffectType)
ParameterTypBeskrivning
dmlEffectTypeTextDmlEffectDrawingML texteffekttyp.

Returvärde

Sann om en viss DrawingML-texteffekt tillämpas.

Exempel

Visar hur man kontrollerar om en körning visar en DrawingML-texteffekt.

Document doc = new Document(MyDir + "DrawingML text effects.docx");

RunCollection runs = doc.FirstSection.Body.FirstParagraph.Runs;

Assert.True(runs[0].Font.HasDmlEffect(TextDmlEffect.Shadow));
Assert.True(runs[1].Font.HasDmlEffect(TextDmlEffect.Shadow));
Assert.True(runs[2].Font.HasDmlEffect(TextDmlEffect.Reflection));
Assert.True(runs[3].Font.HasDmlEffect(TextDmlEffect.Effect3D));
Assert.True(runs[4].Font.HasDmlEffect(TextDmlEffect.Fill));

Se även