evaluated_page_count mülk

evaluated_page_count mülk

Bu çalışma kitabının toplam sayfa sayısını değerlendirin

Örnek

Aşağıdaki kod, bir çalışma kitabının sayfa sayısını almanın en hızlı yolunu gösterir.

from aspose.cells import Workbook
from aspose.cells.rendering import ImageOrPrintOptions, WorkbookPrintingPreview

workbook = Workbook("Book1.xlsx")
workbookPrintingPreview = WorkbookPrintingPreview(workbook, ImageOrPrintOptions())
# fastest way to get page count especailly when there are massive data in workbook.
print(workbookPrintingPreview.evaluated_page_count)

Tanım:

@property
def evaluated_page_count(self):
    ...

Ayrıca bakınız