Clear
ShadowFormat.Clear method
Löscht das Schattenformat.
public void Clear()
Beispiele
Zeigt, wie mit einer Schattenformatierung für die Form gearbeitet wird.
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();
Siehe auch
- class ShadowFormat
- namensraum Aspose.Words.Drawing
- Montage Aspose.Words