ZennoLab Assemblies Documentation
Click Method (HtmlElement)
Example 
The performs the click event on the html element.
Syntax
public void Click()
Remarks
This method performs the click event with default settings. For setting the event settings use the RiseEvent method.
Example
The following code example demonstrates uses of the Click method
// find element by attribute
HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// click on the element
he.Click();
// find element by attribute
$he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
 
// click on the element
$he->Click();
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
RiseEvent Method
DragDrop Method
FindChildByAttribute Method
Document Class

Send Feedback