InstantJsonRenderTheme
Specifies the annotation appearance theme used when importing Instant JSON.
from nutrient_sdk import InstantJsonRenderThemeValues
| Name | Value | Description |
|---|---|---|
InstantJsonRenderTheme.DEFAULT | 0 | Use the default annotation appearance generation. |
InstantJsonRenderTheme.CORE | 1 | Use annotation appearance generation that matches the Core SDK. |
Usage Example
from nutrient_sdk import InstantJsonRenderTheme
# Access enum valuesvalue = InstantJsonRenderTheme.DEFAULTprint(f"Value: {value}") # Output: Value: InstantJsonRenderTheme.DEFAULTprint(f"Integer value: {value.value}") # Output: Integer value: 0