ZennoLab Assemblies Documentation
Name Property (HtmlElement)
Example 
Gets the name of the html element.
Syntax
public string Name {get;}

Property Value

Type: System.String
The name of the html element.
Example
The following code example uses the Name property.
// find element
HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get name
string name = he.Name;
// find element
HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get name
string name = he.Name;
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
OuterHtml Property
TagName Property
GetAttribute Method

Send Feedback