PsSaveOptions.UseBookFoldPrintingSettings

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

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

PsSaveOptions psSaveOptions = new PsSaveOptions();
psSaveOptions.UseBookFoldPrintingSettings = true;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "PsSaveOptions.UseBookFoldPrintingSettings.ps", psSaveOptions)
    .Execute();

See Also