Specifies preferences for saving PDF documents.

from nutrient import PdfSavePreferences

Values

NameValueDescription
PdfSavePreferences.NONE0No specific preferences are set.
PdfSavePreferences.APPLY_REDACTIONS1Automatically apply redaction annotations when saving PDF documents. When enabled, all redaction annotations are applied (content is permanently removed) during save operations. The redaction annotations are removed after applying.

Usage Example

from nutrient import PdfSavePreferences
# Access enum values
value = PdfSavePreferences.NONE
print(f"Value: {value}") # Output: Value: PdfSavePreferences.NONE
print(f"Integer value: {value.value}") # Output: Integer value: 0