ZennoLab Assemblies Documentation
InsertElementBefore Method
Example 

Type: Zennolab.CommandCenter.HtmlElement

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

Inserts the specified element before this element.
Syntax
public void InsertElementBefore( 
   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 InsertElementBefore method.
// find first element
HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// find second element
HtmlElement hePrev = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByName("rad");
 
// insert element "hePrev" before "he"
he.InsertElementBefore(hePrev);
// find first element
$he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// find second element
$hePrev = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByName("rad");
 
// insert element "hePrev" before "he"
$he->InsertElementBefore($hePrev);
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
InsertElementAfter Method

Send Feedback