OutlineElement
Overview
OutlineElement is a class in Aspose.Note FOSS for Python.
Inherits from: CompositeNode.
OutlineElement.NumberList represents the numbered list applied to this outline element, or None if absent.
This class provides 7 methods for working with OutlineElement objects in Python programs.
Available methods include: Accept, AppendChildFirst, AppendChildLast, GetChildNodes, GetEnumerator, InsertChild, RemoveChild.
All public members are accessible to any Python application after installing the Aspose.Note FOSS for Python package.
Properties: Document, FirstChild, LastChild, NumberList, ParentNode.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
NumberList | NumberList | None | Read/Write | Gets or sets the number list. |
FirstChild | Node | None | Read | Gets the first child. |
LastChild | Node | None | Read | Gets the last child. |
ParentNode | Node | None | Read | Gets the parent node. |
Document | Document | None | Read | Gets the document. |
Methods
| Signature | Description |
|---|---|
AppendChildLast(node: TNode) → TNode | |
AppendChildFirst(node: TNode) → TNode | |
InsertChild(index: int, node: TNode) → TNode | |
RemoveChild(node: Node) | |
GetEnumerator() → Iterator[Node] | |
GetChildNodes(node_type: type[TNode]) → list[TNode] | |
Accept(visitor: DocumentVisitor) |