This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /api/python/enums/pdf-save-preferences.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. PdfSavePreferences

Specifies preferences for saving PDF documents.

from nutrient_sdk 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_sdk 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