Our software generates dynamic pages based on Word templates using Spire.Doc. These are then saved/mailed/etc ... as a .pdf document using 'doc.SaveToFile("example.pdf", Spire.Doc.FileFormat.PDF);'.
Some of these pages we generate are 'labels' which have to fit the physical paper exactly. However, when our customers download and print the generated PDF, Adobe selects page scaling 'fit_to_page' by default, and this messes up the margins.
Spire.PDF has an option to alter this behavior using the line 'pdf.PrintSettings.SelectSinglePageLayout(Spire.Pdf.Print.PdfSinglePageScalingMode.ActualSize);'. However, it would be nice if we could pass this parameter directly when saving our word as a file/stream from our Spire.Document.