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

The RenderingLayoutMode enumeration.

from nutrient_sdk import RenderingLayoutMode

Values

NameValueDescription
RenderingLayoutMode.ZOOM_EXTENTS0Computes canvas size and rendering origin to display the maximum extents of all objects.

Usage Example

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