VintaSoft Twain .NET SDK 15.0: Documentation for .NET developer
Vintasoft.Twain.ImageEncoders Namespace / TwainTiffEncoderSettings Class / TiffMultiPage Property
Syntax Remarks Requirements SeeAlso
In This Topic
    TiffMultiPage Property (TwainTiffEncoderSettings)
    In This Topic
    Gets or sets a value indicating whether multipage TIFF file must be created.
    Syntax
    'Declaration
    
    Public Property TiffMultiPage As Boolean
    
    
    public bool TiffMultiPage { get; set; }
    
    
    public: __property bool get_TiffMultiPage();
    public: __property void set_TiffMultiPage(
    bool value
    );
    public:
    property bool TiffMultiPage { bool get(); void set(bool value); }

    Property Value

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

    New file will be created if this property is set to true and TIFF file does not exist.
    New image will be added to existing file if this property is set to true and the TIFF 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