ユニオン範囲の作成
Contents
[
Hide
]
ユニオン範囲の作成
Aspose.CellsはWorksheetCollection.CreateUnionRangeメソッドを使用してユニオン範囲を作成できます。WorksheetCollection.CreateUnionRangeは2つのパラメータ(ユニオン範囲のアドレスとワークシートのインデックス)を受け取ります。このメソッドはUnionRangeオブジェクトを返します。
以下のコードスニペットは、WorksheetCollection.CreateUnionRangeメソッドを使用してユニオン範囲を作成する例です。生成された出力ファイルも添付してあります。
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 | |
//Source directory | |
String sourceDir = Utils.Get_SourceDirectory(); | |
//Output directory | |
String outputDir = Utils.Get_OutputDirectory(); | |
// Instantiating a Workbook object | |
Workbook workbook = new Workbook(sourceDir + "SampleChangeTickLabelDirection.xlsx"); | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Load the chart from source worksheet | |
Chart chart = worksheet.getCharts().get(0); | |
chart.getCategoryAxis().getTickLabels().setDirectionType(ChartTextDirectionType.HORIZONTAL); | |
// Output the file | |
workbook.save(outputDir + "outputChangeTickLabelDirection.xlsx"); |