Форматирование слайсера
Contents
[
Hide
]
Возможные сценарии использования
Вы можете отформатировать слайсер в Microsoft Excel, установив количество столбцов или установив его стиль и т. д. Aspose.Cells также позволяет вам сделать это с помощьюSlicer.NumberOfColumnsиSlicer.StyleTypeхарактеристики.
Форматирование слайсера
Пожалуйста, посмотрите следующий код, он загружаетобразец файла 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-.NET | |
// Load sample Excel file containing slicer. | |
Workbook wb = new Workbook("sampleFormattingSlicer.xlsx"); | |
// Access first worksheet. | |
Worksheet ws = wb.Worksheets[0]; | |
// Access the first slicer inside the slicer collection. | |
Aspose.Cells.Slicers.Slicer slicer = ws.Slicers[0]; | |
// Set the number of columns of the slicer. | |
slicer.NumberOfColumns = 2; | |
// Set the type of slicer style. | |
slicer.StyleType = Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleLight6; | |
// Save the workbook in output XLSX format. | |
wb.Save("outputFormattingSlicer.xlsx", SaveFormat.Xlsx); |