class documentation

Base container node. attributes * children : components in this table (i.e. the table's cells)

Method __init__ Undocumented
Method add_text Shortcut to add text data.
Method append Add a node to children.
Method insert Insert a child node.
Method parents Return the ancestor nodes.

Inherited from VNode:

Method __iter__ Undocumented
Method accept Undocumented
Method leave Undocumented
Instance Variable children Undocumented
Instance Variable parent Undocumented
Instance Variable visitor_name Undocumented
def add_text(self, text: str): (source)

Shortcut to add text data.

def append(self, child: VNode): (source)

Add a node to children.

def insert(self, index: int, child: VNode): (source)

Insert a child node.

def parents(self) -> list[BaseLayout]: (source)

Return the ancestor nodes.