Affettatrice di formattazione

Affettatrice di formattazione

Utilizzando Microsoft Excel, è possibile formattare l’affettatrice impostandone il numero di colonne, stili, ecc. Aspose.Cells for Python via Java fornisce le proprietà Slicer.NumberOfColumns e Slicer.StyleType per ottenere ciò.

Il seguente frammento di codice carica il fileesempio di file Excelche contiene un’affettatrice. Accede all’affettatrice e imposta il numero di colonne e il tipo di stile e lo salva comefile Excel di output. Lo screenshot mostra come l’affettatrice si occupa dell’esecuzione del codice di esempio.

cose da fare:immagine_alt_testo

Codice d’esempio

import jpype
import asposecells
jpype.startJVM()
from asposecells.api import Workbook, SaveFormat, SlicerStyleType
# Load Source Excel file
workbook = Workbook("sampleFormattingSlicer.xlsx")
# Access first worksheet
worksheet = workbook.getWorksheets().get(0)
# Access the newly added slicer from slicer collection
slicer = worksheet.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
workbook.save("outputFormattingSlicer.xlsx", SaveFormat.XLSX)
jpype.shutdownJVM()