PdfDocumentSignerAppendChangesFinal Method |
Appends any changes made to annotations and form fields to the Stream provided in the
constructor. After calling this method, this object is considered dead and can no longer
be used for appending more changes or appending signatures. Further changes require
constructing a new PdfDocumentSignerObject.
Namespace:
Atalasoft.PdfDoc.DigitalSignatures
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public void AppendChangesFinal(
bool closeStream
)
Public Sub AppendChangesFinal (
closeStream As Boolean
)
Parameters
- closeStream
- Type: SystemBoolean
if set to true close the initial stream.
Remarks
If closeStream is
true, the stream will not be closed in the event of an error.
This is an append action, not a rewrite action and will modify the original stream.
If you need to preserve the original stream, copy it to a temporary stream first, then
use that stream for making changes.
See Also