Evitar Página en Blanco en el PDF de Salida cuando no hay Nada que Imprimir
Contents
[
Hide
]
Escenarios de uso posibles
Cuando el archivo de Excel está vacío y el usuario lo guarda como PDF usando Aspose.Cells, se representa una página en blanco en el PDF de salida. A veces, este comportamiento predeterminado es indeseable. Aspose.Cells proporciona la propiedad PdfSaveOptions.OutputBlankPageWhenNothingToPrint para tratar este problema. Si la estableces como false, entonces CellsException ocurrirá cuando no haya nada que imprimir en el PDF de salida.
Evitar Página en Blanco en el PDF de salida cuando no hay nada que imprimir
El siguiente código de ejemplo crea un libro de trabajo vacío y luego lo guarda como PDF después de establecer la propiedad PdfSaveOptions.OutputBlankPageWhenNothingToPrint como false. Ya que no hay nada que imprimir en el PDF de salida, CellsException ocurre como se muestra a continuación.
Código de muestra
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Create empty workbook. | |
Workbook wb = new Workbook(); | |
//Create Pdf save options. | |
PdfSaveOptions opts = new PdfSaveOptions(); | |
//Default value of OutputBlankPageWhenNothingToPrint is true. | |
//Setting false means - Do not output blank page when there is nothing to print. | |
opts.OutputBlankPageWhenNothingToPrint = false; | |
//Save workbook to Pdf format, it will throw exception because workbook has nothing to print. | |
MemoryStream ms = new MemoryStream(); | |
try | |
{ | |
//Save to Pdf format. It will throw exception. | |
wb.Save(ms, opts); | |
} | |
catch (Exception ex) | |
{ | |
Console.Write("Exception Message: " + ex.Message + "\r\n"); | |
} |
Excepción
Aspose.Cells.CellsException was unhandled
HResult=-2146232832
Message=There is nothing to output/print.
Source=Aspose.Cells
StackTrace:
at Aspose.Cells.Workbook.Save(String fileName, SaveOptions saveOptions)