HasSmartArt

Shape.HasSmartArt property

Devolucionesverdadero si estoShape tiene un objeto SmartArt.

public bool HasSmartArt { get; }

Ejemplos

Muestra cómo contar el número de formas en un documento con objetos 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);

Ver también