PdfSaveOptions.UseBookFoldPrintingSettings
PdfSaveOptions UseBookFoldPrintingSettings property. Gets or sets a boolean value indicating whether the document should be saved using a booklet printing layout if it is specified via page setup.
PdfSaveOptions.UseBookFoldPrintingSettings property
Gets or sets a boolean value indicating whether the document should be saved using a booklet printing layout, if it is specified via page setup.
public bool UseBookFoldPrintingSettings { get; set; }
Examples
Shows how to save a document to the PDF format in the form of a book fold.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.UseBookFoldPrintingSettings = true;
Converter.Create()
.From(MyDir + "Simple.docx")
.To(ArtifactsDir + "PdfSaveOptions.UseBookFoldPrintingSettings.pdf", pdfSaveOptions)
.Execute();
See Also
- class PdfSaveOptions
- namespace Wordize.Saving
- assembly Wordize