VintaSoft Twain .NET SDK 14.1: Documentation for .NET developer
Vintasoft.WpfTwain.ImageEncoders Namespace / TwainPdfEncoderSettings Class / PdfMultiPage Property
Syntax Remarks Requirements SeeAlso
In This Topic
    PdfMultiPage Property (TwainPdfEncoderSettings)
    In This Topic
    Gets or sets a value indicating whether multipage PDF document must be created.
    Syntax
    'Declaration
    
    Public Property PdfMultiPage As Boolean
    
    
    public bool PdfMultiPage { get; set; }
    
    
    public: __property bool get_PdfMultiPage();
    public: __property void set_PdfMultiPage(
    bool value
    );
    public:
    property bool PdfMultiPage { bool get(); void set(bool value); }

    Property Value

    true - multipage PDF file must be created; false - singlepage PDF file must be created.
    Default value is true.
    Remarks

    New file will be created if this property is set to true and PDF file does not exist.
    New image will be added to existing file if this property is set to true and the PDF file exists.
    New file will be created or old file will be replaced if this property is set to false.

    Requirements

    Target Platforms: .NET 8, .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also