ZennoLab Assemblies Documentation
InsertElementAfter Method
Example 

Type: Zennolab.CommandCenter.HtmlElement

The html element to insert. The value can be null.

Inserts the specified element after this element.
Syntax
public void InsertElementAfter( 
   HtmlElement insertingElement
)

Parameters

insertingElement

Type: Zennolab.CommandCenter.HtmlElement

The html element to insert. The value can be null.

Example
The following code example demonstrates uses of the InsertElementAfter method.
// find first element
HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// find second element
HtmlElement heNext = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByName("rad");
 
// insert element "heNext" after "he"
he.InsertElementAfter(heNext);
// find first element
$he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// find second element
$heNext = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByName("rad");
 
// insert element "heNext" after "he"
$he->InsertElementAfter($heNext);
Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven

See Also

Reference

HtmlElement Class
HtmlElement Members
InsertElementBefore Method

Send Feedback