使用形状或图表的阴影效果
Contents
[
Hide
]
可能的使用场景
Aspose.Cells 提供了形状.ShadowEffect使用形状或图表的阴影效果的属性。它包含以下子属性,您可以根据需要设置这些子属性以获得不同的结果。
以下截图为Microsoft Excel界面设置阴影效果的形状。
使用形状或图表的阴影效果
下面的示例代码加载源文件并访问第一个工作表中的第一个形状并设置子属性形状.ShadowEffect属性,然后将工作簿保存在输出excel文件.
示例代码
This file contains hidden or 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-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(WorkingWithShadowEffect.class) + "articles/"; | |
// Loads the workbook which contains hidden external links | |
Workbook wb = new Workbook(dataDir + "WorkingWithShadowEffect_in.xlsx"); | |
// Access first worksheet | |
Worksheet ws = wb.getWorksheets().get(0); | |
// Access first shape | |
Shape sh = ws.getShapes().get(0); | |
// Set the shadow effect of the shape | |
// Set its Angle, Blur, Distance and Transparency properties | |
ShadowEffect se = sh.getShadowEffect(); | |
se.setAngle(150); | |
se.setBlur(4); | |
se.setDistance(45); | |
se.setTransparency(0.3); | |
// Save the workbook in xlsx format | |
wb.save(dataDir + "WorkingWithShadowEffect_out.xlsx"); |