ZennoLab Assemblies Documentation
ParentTab Property (HtmlElement)
Example 
Gets the parent tab.
Syntax
public Tab ParentTab {get;}

Property Value

Type: Zennolab.CommandCenter.Tab

The parent tab.

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

Send Feedback