ZennoLab Assemblies Documentation
GetAttribute Method
Example 

Type: System.String

The name of attribute.

Returns the text of attribute.
Syntax
public string GetAttribute( 
   string attrName
)

Parameters

attrName

Type: System.String

The name of attribute.

Return Value

Type: System.String

The text of attribute.

Example
The following code example demonstrates uses of the GetAttribute method.
// find element by attribute
HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get attribute value
string attributeText = he.GetAttribute("TagName");
// find element by attribute
$he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// get attribute value
$attributeText = $he->GetAttribute("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
GetValue Method
SetAttribute Method
SetValue Method

Send Feedback