HasSmartArt

Shape.HasSmartArt property

Gibt zurückWAHR wenn dasShape hat ein SmartArt-Objekt.

public bool HasSmartArt { get; }

Beispiele

Zeigt, wie die Anzahl der Formen in einem Dokument mit SmartArt-Objekten gezählt wird.

Document doc = new Document(MyDir + "SmartArt.docx");

int numberOfSmartArtShapes = doc.GetChildNodes(NodeType.Shape, true).Cast<Shape>().Count(shape => shape.HasSmartArt);

Assert.AreEqual(2, numberOfSmartArtShapes);

Siehe auch