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

Property Value

Type: Zennolab.CommandCenter.HtmlElement

The first child element.

Example
The following code example uses the FirstChild property.
// get document
Document doc = tab.MainDocument;
 
// get first child
HtmlElement he = doc.FirstChild;
// get document
$doc = $tab->MainDocument;
 
// get first child
$he = $doc->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

Document Class
Document Members
HtmlElement Class

Send Feedback