| HtmlNodeInsertAfter Method  | 
            Inserts the specified node immediately after the specified reference node.
            
 
Namespace: WorkflowGen.My.HtmlAgilityPackAssembly: WorkflowGen.My (in WorkflowGen.My.dll) Version: 3.3.0.0 (3.3.0.0)
Syntaxpublic 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