XpsSaveOptions.UseBookFoldPrintingSettings

XpsSaveOptions 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.

XpsSaveOptions.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 XPS format in the form of a book fold.

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

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "XpsSaveOptions.UseBookFoldPrintingSettings.xps", xpsSaveOptions)
    .Execute();

See Also