Outline
Overview
Outline is a class in Aspose.Note FOSS for Python.
Inherits from: CompositeNode.
Outline.HorizontalOffset represents the horizontal offset of the outline within its container.
This class provides 7 methods for working with Outline 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: DescendantsCannotBeMoved, Document, FirstChild, HorizontalOffset, IndentPosition, LastChild, and 7 more.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
HorizontalOffset | float | None | Read/Write | Gets or sets the horizontal offset. |
VerticalOffset | float | None | Read/Write | Gets or sets the vertical offset. |
MaxWidth | float | None | Read/Write | Gets or sets the max width. |
MaxHeight | float | None | Read/Write | Gets or sets the max height. |
MinWidth | float | None | Read/Write | Gets or sets the min width. |
ReservedWidth | float | None | Read/Write | Gets or sets the reserved width. |
IndentPosition | float | None | Read/Write | Gets or sets the indent position. |
DescendantsCannotBeMoved | bool | Read/Write | Gets or sets the descendants cannot be moved. |
LastModifiedTime | datetime | None | Read/Write | Gets or sets the last modified time. |
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) |