The HtmlLayoutType enumeration.

from nutrient import HtmlLayoutType

Values

NameValueDescription
HtmlLayoutType.PAGE_LAYOUT0
HtmlLayoutType.REFLOW_LAYOUT1

Usage Example

from nutrient import HtmlLayoutType
# Access enum values
value = HtmlLayoutType.PAGE_LAYOUT
print(f"Value: {value}") # Output: Value: HtmlLayoutType.PAGE_LAYOUT
print(f"Integer value: {value.value}") # Output: Integer value: 0