remove_child method

remove_child

Removes a child node from the DOM and returns the removed node.

Returns

Unlike Node.clone_node the return value preserves the IEventListener objects associated with it.

def remove_child(self, child):
    ...
ParameterTypeDescription
childaspose.html.dom.NodeA Node that is the child node to be removed from the DOM.

See Also