The RenderingLayoutMode enumeration.

from nutrient import RenderingLayoutMode

Values

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

Usage Example

from nutrient 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