Clear
ShadowFormat.Clear method
Efface le format d’ombre.
public void Clear()
Exemples
Montre comment utiliser un formatage d’ombre pour la forme.
Document doc = new Document(MyDir + "Shape stroke pattern border.docx");
Shape shape = (Shape)doc.GetChildNodes(NodeType.Shape, true)[0];
if (shape.ShadowFormat.Visible && shape.ShadowFormat.Type == ShadowType.Shadow2)
shape.ShadowFormat.Type = ShadowType.Shadow7;
if (shape.ShadowFormat.Type == ShadowType.ShadowMixed)
shape.ShadowFormat.Clear();
Voir également
- class ShadowFormat
- espace de noms Aspose.Words.Drawing
- Assemblée Aspose.Words