| |
<htmlDocument variable>.BuildString | Generates a UTF-8 string containing an HTML document. |
<htmlDocument variable>.ChercheElémentParID | Searches for the element whose "ID" attribute matches a specific value in an HTML document. |
<htmlDocument variable>.FindElementByClass | Searches for elements whose "class" attribute matches a specific value in an HTML document. |
<htmlDocument variable>.FindElementByName | Searches for elements whose "name" attribute matches a specific value in an HTML document. |
<htmlDocument variable>.FindElementByTag | Searches for elements that correspond to a tag in an HTML document. |
<htmlDocument variable>.Save | Saves the content of an htmlDocument variable to an HTML file. |
<htmlNode variable>.ChercheElémentParID | Searches for the element whose "ID" attribute matches a specific value in an HTML node. |
<htmlNode variable>.FindElementByClass | Searches for elements whose "class" attribute matches a specific value in an HTML node. |
<htmlNode variable>.FindElementByName | Searches for elements whose "name" attribute matches a specific value in an HTML node. |
<htmlNode variable>.FindElementByTag | Searches for elements that correspond to a tag in an HTML node. |
<htmlNode variable>.InsertAfter | Adds a node after the specified node in an HTML document. |
<htmlNode variable>.InsertBefore | Adds a node before the specified node in an HTML document. |
<htmlNode variable>.InsertFirstChild | Adds a child at the start of the children of the current node in an HTML document. |
<htmlNode variable>.InsertLastChild | Adds a child after the child of the current node in an HTML document. |
<htmlNode variable>.ModifyAttribute | Adds or changes an attribute of the current node of the HTML document. |
<htmlNode variable>.Remove | Removes the specified node and its descendants in an HTML document. |
<htmlNode variable>.RemoveAttribute | Removes a given attribute |
<htmlNode variable>.RemoveChild | Removes a given node in the current node of an HTML document. |
<htmlNode variable>.UnwrapAllChildren | Deletes the specified node in an HTML document without deleting its children, which take its place. |
<htmlNode variable>.Wrap | Wraps the specified node in a given node of an HTML document. |
<htmlNode variable>.WrapAllChildren | Wraps all children of the given node in a new node in an HTML document. |