図形またはグラフの影効果の操作

可能な使用シナリオ

Aspose.Cellsは、図形やグラフの影効果を操作するためのShape.ShadowEffectプロパティを提供します。これには、異なる結果を得るために設定できる次のサブプロパティが含まれています。

以下のスクリーンショットは、Shapeの影効果の設定を示しています。

todo:image_alt_text

図形またはグラフの影効果の操作

次のサンプルコードは、ソースエクセルファイルを読み込み、最初のワークシートの最初の図形にアクセスして、Shape.ShadowEffect プロパティのサブプロパティを設定し、その後、出力エクセルファイルにブックを保存します。

サンプルコード

// 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");