HasSmartArt

Shape.HasSmartArt property

RestituisceVERO se questoShape ha un oggetto SmartArt.

public bool HasSmartArt { get; }

Esempi

Mostra come contare il numero di forme in un documento con oggetti SmartArt.

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

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

Assert.AreEqual(2, numberOfSmartArtShapes);

Guarda anche