ImageGear v26.5 - Updated March 3, 2025
ImageGear.Core Assembly / ImageGear.Formats Namespace / ImGearSavingModes Enumeration




ImGearSavingModes Enumeration
Lists all saving modes.
Syntax
'Declaration
 
Public Enum ImGearSavingModes 
   Inherits System.Enum
 
'Usage
 
Dim instance As ImGearSavingModes
Members
MemberValueDescription
APPEND1New pages are appended to existing image. Any time ImGearFileFormats.SavePage method is used with ImGearSavingModes.APPEND, the stream must be at the beginning of the file to be appended to.
INSERT2New pages are inserted into existing image.
OVERWRITE0A new image is created during saving. If old image exists, it is overwritten.
REPLACE3New pages replace existing pages in the image.
Remarks
This enumeration specifies available saving modes, such as overwrite image, insert page, etc.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         ImageGear.Formats.ImGearSavingModes

See Also