EvaluatedPageCount

SheetPrintingPreview.EvaluatedPageCount property

Evalúe el recuento total de páginas de esta hoja de trabajo

public int EvaluatedPageCount { get; }

Ejemplos

El siguiente código muestra la forma más rápida de obtener el recuento de páginas de una hoja de trabajo.

Workbook workbook = new Workbook("Book1.xlsx");

SheetPrintingPreview sheetPrintingPreview = new SheetPrintingPreview(workbook.Worksheets[0], new ImageOrPrintOptions());

// la forma más rápida de obtener el recuento de páginas, especialmente cuando hay datos masivos en la hoja de trabajo.
Console.WriteLine(sheetPrintingPreview.EvaluatedPageCount);
        

Ver también