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

Specifies the mode options for PDF settings.

from nutrient_sdk import PdfSettingsMode

Values

NameValueDescription
PdfSettingsMode.UNSPECIFIED0No specific mode is set.
PdfSettingsMode.PRESERVE_ANNOTATIONS1Preserve annotations when saving PDF documents.

Usage Example

from nutrient_sdk import PdfSettingsMode
# Access enum values
value = PdfSettingsMode.UNSPECIFIED
print(f"Value: {value}") # Output: Value: PdfSettingsMode.UNSPECIFIED
print(f"Integer value: {value.value}") # Output: Integer value: 0