Создать союзный диапазон
Contents
[
Hide
]
Создать союзный диапазон
Aspose.Cells предоставляет возможность создавать Union Range с помощьюWorksheetCollection.CreateUnionRange метод.WorksheetCollection.CreateUnionRange принимает два параметра: адрес для создания диапазона объединения и индекс рабочего листа.WorksheetCollection.CreateUnionRange метод возвращаетЮнионРейнджобъект.
В следующем фрагменте кода показано создание диапазона объединения с помощьюWorksheetCollection.CreateUnionRange метод. Выходной файл, сгенерированный кодом, прилагается для справки.
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 | |
//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"); |