ZennoLab Assemblies Documentation
LastChild Property
Example 
Gets the last child element.
Syntax
public HtmlElement LastChild {get;}

Property Value

Type: Zennolab.CommandCenter.HtmlElement

The last child element.

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

Send Feedback