page_count mülk

page_count mülk

Kaydedilecek sayfa sayısını alır veya ayarlar.

Notlar

Varsayılan, System.Int32.MaxValue’dur, bu da tüm sayfaların oluşturulacağı anlamına gelir.

Örnek

Aşağıdaki örnek, bir Microsoft Excel dosyasındaki sayfa aralığının (3 ve 4) PDF’e nasıl dönüştürüleceğini gösterir.

from aspose.cells import PdfSaveOptions, Workbook

# Open an Excel file
wb = Workbook("Book1.xlsx")
options = PdfSaveOptions()
# Print only Page 3 and Page 4 in the output PDF
# Starting page index (0-based index)
options.page_index = 3
# Number of pages to be printed
options.page_count = 2
# Save the PDF file
wb.save("output.pdf", options)

Tanım:

@property
def page_count(self):
    ...
@page_count.setter
def page_count(self, value):
    ...

Ayrıca bakınız