Undvik tomt sida i utdata PDF när det finns inget att skriva ut
Contents
[
Hide
]
Möjliga användningsscenario
När Excelfilen är tom och användaren sparar den till PDF med Aspose.Cells för Python via .NET, renderar den en tom sida i utdata-PDF. Ibland är detta standardbeteende oönskat. Aspose.Cells för Python via .NET tillhandahåller egenskapen PdfSaveOptions.output_blank_page_when_nothing_to_print för att hantera detta problem. Om du sätter den som false, kommer CellsException att inträffa när det inte finns något att skriva ut i utdata-PDF.
Undvik tom sida i utmatnings-PDF när det inte finns något att skriva ut
Följande exempelkod skapar en tom arbetsbok och sparar den sedan som PDF efter att ha satt egenskapen PdfSaveOptions.output_blank_page_when_nothing_to_print som false. Eftersom det inte finns något att skriva ut i utdata-PDF, inträffar CellsException som visas nedan.
Exempelkod
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
from aspose.cells import PdfSaveOptions, Workbook | |
from io import BytesIO | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# Create empty workbook. | |
wb = Workbook() | |
# Create Pdf save options. | |
opts = PdfSaveOptions() | |
# Default value of OutputBlankPageWhenNothingToPrint is true. | |
# Setting false means - Do not output blank page when there is nothing to print. | |
opts.output_blank_page_when_nothing_to_print = False | |
# Save workbook to Pdf format, it will throw exception because workbook has nothing to print. | |
ms = BytesIO() | |
try: | |
# Save to Pdf format. It will throw exception. | |
wb.save(ms, opts) | |
except Exception as ex: | |
print(str(ex)) |
Undantag
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)