Biçimlendirme Dilimleyici

Olası Kullanım Senaryoları

Dilimleyiciyi Microsoft Excel’de sütun sayısını veya stilini vb. ayarlayarak biçimlendirebilirsiniz. Aspose.Cells ayrıca bunu kullanarak yapmanıza olanak tanır.Slicer.NumberOfColumnsveSlicer.StyleTypeözellikler.

Biçimlendirme Dilimleyici

Lütfen aşağıdaki koda bakın,örnek excel dosyasıbir dilimleyici içerir. Dilimleyiciye erişir ve sütun sayısını ve stil tipini ayarlar ve şu şekilde kaydeder:çıktı excel dosyası. Ekran görüntüsü, örnek kodun yürütülmesinden sonra dilimleyicinin nasıl göründüğünü gösterir.

yapılacaklar:resim_alternatif_metin

Basit kod

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