VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Encoders Namespace / MultipageEncoderBase Class / CreateNewFile Property
Syntax Remarks Requirements SeeAlso
In This Topic
    CreateNewFile Property (MultipageEncoderBase)
    In This Topic
    Gets or sets a value indicating whether the new file should be created.
    Syntax
    'Declaration
    
    Public Property CreateNewFile As Boolean
    
    
    public bool CreateNewFile { get; set; }
    
    
    public: __property bool get_CreateNewFile();
    public: __property void set_CreateNewFile(
    bool value
    );
    public:
    property bool CreateNewFile { bool get(); void set(bool value); }

    Property Value

    true - existing file will be deleted, new file will be created; false - image will be added to existing file or new file will be created.
    Default value is true.
    Remarks

    Image will be saved into new multipage image file (existing file will be overwritten) if value of this property is set to true. Image will be added to an existing multipage image file if value of 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