HasSmartArt

Shape.HasSmartArt property

İadelerdoğru Eğer buShape bir SmartArt nesnesi var.

public bool HasSmartArt { get; }

Örnekler

SmartArt nesneleri içeren bir belgedeki şekillerin sayısının nasıl sayılacağını gösterir.

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

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

Assert.AreEqual(2, numberOfSmartArtShapes);

Ayrıca bakınız