Table
Overview
Table is a class in Aspose.Note FOSS for Python.
Inherits from: CompositeNode.
Table.Tags provides the collection of NoteTag objects attached to the table.
This class provides 8 methods for working with Table objects in Python programs.
Available methods include: Accept, AppendChildFirst, AppendChildLast, GetChildNodes, GetEnumerator, InsertChild, RemoveChild, __init__.
All public members are accessible to any Python application after installing the Aspose.Note FOSS for Python package.
Properties: Columns, Document, FirstChild, IsBordersVisible, LastChild, LastModifiedTime, and 2 more.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
Tags | list[NoteTag] | Read | Gets the tags. |
Columns | list[TableColumn] | Read | Gets the columns. |
IsBordersVisible | `` | Read | Gets the is borders visible. |
LastModifiedTime | `` | Read | Gets 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 |
|---|---|
__init__(Tags: list[NoteTag] | None, Columns: list[TableColumn] | None, IsBordersVisible: bool, LastModifiedTime: datetime | None) | |
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) |