HasSmartArt

Shape.HasSmartArt property

返回真的如果这Shape有一个 SmartArt 对象。

public bool HasSmartArt { get; }

例子

演示如何计算文档中包含 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);

也可以看看