| ZennoLab.CommandCenter Assembly > ZennoLab.CommandCenter Namespace > HtmlElement Class : RiseEvent Method |
Type: System.String
The name of the event.
Type: System.String
The emulation level. Can be: "None", "Middle" or "Full".
Type: System.String
The name of the event.
Type: System.String
The emulation level. Can be: "None", "Middle" or "Full".
The emulation levels:
"Full" - the full emulation which include the generation of all events such as mouseover, mousemove, mouseout, focus on element and other.
"Middle" - the standard emulation level includes a minimum of actions without additional events.
"None" - the default emulation level without additional events and actions.
// find element HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0); // rise event he.RiseEvent("onclick", "full");
// find element $he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0); // rise event $he->RiseEvent("onclick", "full");
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.