Different document write modes.
Namespace: TallComponents.PDFAssembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.0
Syntax
| C# |
|---|
public enum DocumentWriteMode |
| Visual Basic |
|---|
Public Enumeration DocumentWriteMode |
Members
| Member name | Value | Description | |
|---|---|---|---|
| Compact | 0 |
Instead of appending an update only, the document is completely rewitten.
Note that existing signed signature fields will be invalidated. | |
| AppendUpdate | 1 |
Only an update is appended to this existing document.
A new document will be written in Compact mode since this will be the first update. Existing document will be forced to append changes only. Supported features:
Note: You should not change the Security, otherwise an incorrect document will be written. | |
| Auto | 2 |
The document is writen eighter Full or AppendUpdate, depending if a
signed signature is already embedded in the document or the document is marked
that it allows to have updates only.
New document will be written in Compact mode. Existing document will be written in Full mode if possible, otherwise AppendUpdate mode will be used. |