HtmlLayoutType
The HtmlLayoutType enumeration.
from nutrient import HtmlLayoutTypeValues
| Name | Value | Description |
|---|---|---|
HtmlLayoutType.PAGE_LAYOUT | 0 | |
HtmlLayoutType.REFLOW_LAYOUT | 1 |
Usage Example
from nutrient import HtmlLayoutType
# Access enum valuesvalue = HtmlLayoutType.PAGE_LAYOUTprint(f"Value: {value}") # Output: Value: HtmlLayoutType.PAGE_LAYOUTprint(f"Integer value: {value.value}") # Output: Integer value: 0