ZennoLab Assemblies Documentation
Name Property
See Also  Example Send Feedback
ZennoLab.CommandCenter Assembly > ZennoLab.CommandCenter Namespace > HtmlElement Class : Name Property

Glossary Item Box

Gets the name of the html element.

Syntax

C# 
public string Name {get;}

Property Value

Type: System.String
The name of the html element.

Example

The following code example uses the Name property.
C#Copy Code
HtmlElement he = tab.GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
            
string name = he.Name;
PHPCopy Code
$he = $tab->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
            
$name = $he->Name;

Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.