获取 Visio 形状继承填充
Contents
[
Hide
]
检索 Visio 形状的继承填充数据
Visio 形状可以继承父样式和主形状。开发者可以获得Visio形状的继承填充数据。 InheritFill 属性,由形状类,包含由父样式和主控形状继承的形状的填充格式值。
检索继承的填充数据编程示例
以下代码片段检索形状的继承填充数据。请检查此示例代码:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(RetrieveInheritedFillData.class) + "Shapes/"; | |
// Call the diagram constructor to load a VSDX diagram | |
Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx"); | |
// Get page by ID | |
Page page = diagram.getPages().getPage("Page-1"); | |
// Get shape by ID | |
Shape shape = page.getShapes().getShape(1); | |
// Get the fill formatting values | |
System.out.println(shape.getInheritFill().getFillBkgnd().getValue()); | |
System.out.println(shape.getInheritFill().getFillForegnd().getValue()); | |
System.out.println(shape.getInheritFill().getFillPattern().getValue()); | |
System.out.println(shape.getInheritFill().getShapeShdwObliqueAngle().getValue()); | |
System.out.println(shape.getInheritFill().getShapeShdwOffsetX().getValue()); | |
System.out.println(shape.getInheritFill().getShapeShdwOffsetY().getValue()); | |
System.out.println(shape.getInheritFill().getShapeShdwScaleFactor().getValue()); | |
System.out.println(shape.getInheritFill().getShapeShdwType().getValue()); | |
System.out.println(shape.getInheritFill().getShdwBkgnd().getValue()); | |
System.out.println(shape.getInheritFill().getShdwBkgndTrans().getValue()); | |
System.out.println(shape.getInheritFill().getShdwForegnd().getValue()); | |
System.out.println(shape.getInheritFill().getShdwForegndTrans().getValue()); | |
System.out.println(shape.getInheritFill().getShdwPattern().getValue()); |