ZennoLab Assemblies Documentation
ParentElement Property
Example 
Gets the parent element.
Syntax
public HtmlElement ParentElement {get;}

Property Value

Type: Zennolab.CommandCenter.HtmlElement

The parent element.

Example
The following code example uses the ParentElement property.
// find element
HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get parent element
HtmlElement parentElement = he.ParentElement;
// find element
$he = $tab->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get parent element
$parentElement = $he->ParentElement;
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
ParentBody Property
ParentDocument Property
ParentForm Property
ParentTab Property

Send Feedback