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