図形またはグラフの影効果の操作
Contents
[
Hide
]
可能な使用シナリオ
Aspose.Cellsは、図形やグラフの影効果を操作するためのShape.ShadowEffectプロパティを提供します。これには、異なる結果を得るために設定できる次のサブプロパティが含まれています。
- ShadowEffect.Angle
- ShadowEffect.Blur
- ShadowEffect.Color
- ShadowEffect.Distance
- ShadowEffect.PresetType
- ShadowEffect.Size
- ShadowEffect.Transparency
以下のスクリーンショットは、Shapeの影効果の設定を示しています。
図形またはグラフの影効果の操作
次のサンプルコードは、ソースエクセルファイルを読み込み、最初のワークシートの最初の図形にアクセスして、Shape.ShadowEffect プロパティのサブプロパティを設定し、その後、出力エクセルファイルにブックを保存します。
サンプルコード
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-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"); |