Describes the severity of the consequences of making a repair to part of a PDF document.
Namespace:
Atalasoft.PdfDoc.Generating.Validation
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax Public Enumeration Severity
Members
| Member name | Description |
---|
| None |
No severity - not used - this is equivalent to no problem.
|
| Benign |
The problem is readily fixable and will affect neither the outward appearance nor the content of the document.
|
| Minor |
The problem is readily fixable, but the fix may affect the outward appearance in an acceptable manner, but not the content of the document.
|
| Serious |
The problem is readily fixable, but the fix may affect the outward appearance and/or the content of the document.
|
| Major |
The problem is fixable, but the fix necessitates permanently removing content from the document. It is not
recommended to indiscriminately allow automatic repair of Major problems.
|
| Catastrophic |
The problem is not fixable.
|
Remarks
Although enumerated, this is an ordinal type and new levels of severity may be added in the future.
Rather than check for equality of one of these values, you should instead compare to a value.
For example you might care about anything >= Severity.Serious. The severity is ordered based
on a scale of the effect of changes made in terms of how the appearance and content may change.
See Also