sheet_set proprietà
sheet_set proprietà
Ottiene o imposta i fogli di cui eseguire il rendering. L’impostazione predefinita è tutti i fogli visibili nella cartella di lavoro: SheetSet.visible.
Esempio
Il codice seguente esegue il rendering solo del foglio attivo in pdf.
from aspose.cells import PdfSaveOptions, Workbook
from aspose.cells.rendering import SheetSet
workbook = Workbook("Book1.xlsx")
activeSheetIndex = workbook.worksheets.active_sheet_index
pdfSaveOptions = PdfSaveOptions()
# set active sheet index to sheet set.
pdfSaveOptions.sheet_set = SheetSet([activeSheetIndex])
workbook.save("output.pdf", pdfSaveOptions)
Definizione:
@property
def sheet_set(self):
...
@sheet_set.setter
def sheet_set(self, value):
...
Guarda anche
- modulo aspose.cells
- classe PdfSaveOptions
- classe SheetSet