HtmlNodeInsertAfter Method |
Inserts the specified node immediately after the specified reference node.
Namespace:
WorkflowGen.My.HtmlAgilityPack
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.3.0.0 (4.3.0.0)
Syntax public HtmlNode InsertAfter(
HtmlNode newChild,
HtmlNode refChild
)
Public Function InsertAfter (
newChild As HtmlNode,
refChild As HtmlNode
) As HtmlNode
Parameters
- newChild
- Type: WorkflowGen.My.HtmlAgilityPackHtmlNode
The node to insert. May not be null. - refChild
- Type: WorkflowGen.My.HtmlAgilityPackHtmlNode
The node that is the reference node. The newNode is placed after the refNode.
Return Value
Type:
HtmlNodeThe node being inserted.
See Also