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);
也可以看看
- class Shape
- 命名空间 Aspose.Words.Drawing
- 部件 Aspose.Words