Leadtools.Workflow.Raster Namespace > SaveImageActivity Class : SaveMode Property |
public CodecsSavePageMode SaveMode {get; set;}
'Declaration Public Property SaveMode As CodecsSavePageMode
'Usage Dim instance As SaveImageActivity Dim value As CodecsSavePageMode instance.SaveMode = value value = instance.SaveMode
public: property CodecsSavePageMode SaveMode { CodecsSavePageMode get(); void set ( CodecsSavePageMode value); }
Value | Meaning |
---|---|
CodecsSavePageMode.Append | Append the new page(s) to the end of the file. If the file does not exist, this option will create the file and add the pages to it. firstSavePageNumber is not used. |
CodecsSavePageMode.Insert | Insert the new page(s) at the index specified by firstSavePageNumber. |
CodecsSavePageMode.Replace | Replace the page(s) starting at the index specified by firstSavePageNumber. |
CodecsSavePageMode.Overwrite | Overwrite the page(s) starting at the index specified by firstSavePageNumber. |
CodecsSavePageMode.Append | Append the new page(s) to the end of the file. If the file does not exist, this option will create the file and add the pages to it. |