Hello,
I am saving an Excel spreadsheet to a PDF and have the PageSetup.PrintDraft set to true. The definition for this property is “Represents if the sheet will be printed without graphics.”.
My resulting PDF file still contains the images in my Excel spreadsheet - does this property apply when save to a PDF? The other PageSetup properties such as PrintGridlines and BlackAndWhite do; is this a bug?
foreach (Aspose.Cells.Worksheet wSheet in wBook.Worksheets)
{
if (!wSheet.IsVisible) continue;
wSheet.PageSetup.BlackAndWhite = PrintBW;
}
wBook.Save(OUTPUT_DIR + OUTPUT_NAME, pdfSaveOptions);
I am using Aspose.Cells for .NET 18.4.1.
Thanks,
Sheri