Xps BookFold blank first page

Hello
When loading this html and saving as xps with BookFold enabled, the first page is blank, expected or bug?
Logic Gates.zip (728 Bytes)

@australian.dev.nerds Unfortunately, I cannot reproduce the described behavior using the following code:

Document doc = new Document(@"C:\Temp\in.htm");

XpsSaveOptions opt = new XpsSaveOptions();
opt.UseBookFoldPrintingSettings = true;

doc.Save(@"C:\Temp\out.xps", opt);
1 Like

Before:

doc.Save(@"C:\Temp\out.xps", opt);

Please use:

For Each MySection As Words.Section In MyDocument.Sections
    MySection.PageSetup.MultiplePages = Words.Settings.MultiplePagesType.BookFoldPrinting
Next

@australian.dev.nerds Thank you for additional information. The behavior is expected, if you specify BookFoldPrinting option in MS Word and then print the document, you will get exactly the same result.

1 Like