格式化切片器
Contents
[
Hide
]
可能的使用场景
您可以通过设置其列数或设置其样式等在 Microsoft Excel 中格式化切片器。Aspose.Cells 还允许您使用切片器.NumberOfColumns和切片器样式类型特性。
格式化切片器
请看下面的代码,它加载了示例 Excel 文件包含一个切片器。它访问切片器并设置其列数和样式类型并将其另存为输出Excel文件.屏幕截图显示了切片器在执行示例代码后的样子。
示例代码
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 | |
// Load sample Excel file containing slicer. | |
Workbook wb = new Workbook(srcDir + "sampleFormattingSlicer.xlsx"); | |
// Access first worksheet. | |
Worksheet ws = wb.getWorksheets().get(0); | |
// Access the first slicer inside the slicer collection. | |
Slicer slicer = ws.getSlicers().get(0); | |
// Set the number of columns of the slicer. | |
slicer.setNumberOfColumns(2); | |
// Set the type of slicer style. | |
slicer.setStyleType(SlicerStyleType.SLICER_STYLE_LIGHT_6); | |
// Save the workbook in output XLSX format. | |
wb.save(outDir + "outputFormattingSlicer.xlsx", SaveFormat.XLSX); |