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

Specifies the conversion behavior when a document format is not compatible with the editor.

from nutrient_sdk import ImplicitConversion

Values

NameValueDescription
ImplicitConversion.DISABLED0Throw an error when the original provided document is not compatible with the editor. Consider converting it or enabling AutoConversion.
ImplicitConversion.ENABLED1Automatically convert the document to a format the editor can edit.

Usage Example

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