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

Property Value

Type: System.String

The tag of the element.

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

Send Feedback