ZennoLab Assemblies Documentation
FirstChild Property (HtmlElement)
Example 
Gets the first child element.
Syntax
public HtmlElement FirstChild {get;}

Property Value

Type: Zennolab.CommandCenter.HtmlElement

The first child element.

Example
The following code example uses the FirstChild property.
// find element
HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get first child
HtmlElement first = he.FirstChild;
// find element
$he = $tab->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get first child
$first = $he->FirstChild;
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
LastChild Property
NextSibling Property
PreviousSibling Property
GetChildren Method

Send Feedback