AccessibilitySettings
Settings for Accessibility. Values fall back through three levels: document → SDK → built-in default. Writes target the document only when set on a document’s settings, otherwise the SDK globally when set on SdkSettings.
Tags: Format
from nutrient_sdk import AccessibilitySettingsConstruction
AccessibilitySettings is accessed through a Document instance for per-document overrides, or via SdkSettings for SDK-wide defaults.
# Per-document overridewith Document.open("input.pdf") as doc: settings = doc.settings.accessibility_settings settings.some_field = new_value # mutate fields directly
# SDK-wide default (applies to all documents)SdkSettings.accessibility_settings.some_field = new_valueSettings are configured by writing to fields on the returned object. The settings property itself cannot be reassigned — doc.settings.accessibility_settings = other_settings is rejected.
Properties
auto_tagging_engine
@propertydef auto_tagging_engine(self) -> AutoTaggingEngine
@auto_tagging_engine.setterdef auto_tagging_engine(self, value: AutoTaggingEngine) -> NoneThe engine used to build the logical structure tree when producing a tagged PDF/UA document. Only takes effect when the output conformance is PDF/UA.
Type: AutoTaggingEngine
Default: AutoTaggingEngine.Heuristic