Save document incrementally (i.e. using incremental update technque).
Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntaxmember Save : unit -> unit
Remarks
In order to save document incremetally we should open the document file for writing.
Therefore Document must be initialized with writable stream like in the next code snippet:
Document doc = new Document(new FileStream("document.pdf", FileMode.Open, FileAccess.ReadWrite));
// make some changes and save the document incrementally
doc.Save();
See Also