NumberingParser
Overview
NumberingParser is a class in Aspose.Words FOSS for Python.
Parser for DOCX numbering definitions.
This class provides 7 methods for working with NumberingParser objects in Go programs.
Available methods include: __init__, get_delimiter, get_level_info, get_list_info, get_start_value, is_ordered_list, parse_numbering_part.
All exported members are accessible to any Go application after adding the package via go get github.com/aspose-pdf-foss/aspose-pdf-foss-for-go.
Methods
| Signature | Description |
|---|---|
__init__() | |
parse_numbering_part(numbering_element: ET.Element) | Parse the numbering.xml content. |
get_list_info(list_id: int) → Optional[ListInfo] | Get information about a specific list. |
get_level_info(list_id: int, level: int) → Optional[ListLevelInfo] | Get information about a specific list level. |
is_ordered_list(list_id: int, level: int) → bool | Check if a list level is ordered (numbered). |
get_start_value(list_id: int, level: int) → int | Get the starting value for a list level. |
get_delimiter(list_id: int, level: int) → str | Get the delimiter for a list level. |