ZennoLab Assemblies Documentation
FullTagName Property
Example 
Gets the full tag of the element.
Syntax
public string FullTagName {get;}

Property Value

Type: System.String

The full tag of the element.

Example
The following code example uses the FullTagName property.
// find element
HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get full tag name
string fullTagName = he.FullTagName;
// find element
$he = $tab->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get full tag name
$fullTagName = $he->FullTagName;
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
TagName Property
GetAttribute Method
Id Property
InnerHtml Property
OuterHtml Property
Name Property

Send Feedback