Interface IHTMLEvent
Interface which publishes the event of the HTML element.
Namespace: Syncfusion.Windows.Forms.HTMLUI
Assembly: Syncfusion.HTMLUI.Windows.dll
Syntax
public interface IHTMLEvent
Properties
Name
Gets the name of the event.
Declaration
string Name { get; }
Property Value
| Type |
|---|
| System.String |
Parent
Gets the Parent element of the current event.
Declaration
IHTMLElement Parent { get; }
Property Value
| Type |
|---|
| IHTMLElement |
Methods
AttachEvent(EventHandler)
Attaches user method to the current event.
Declaration
void AttachEvent(EventHandler handler)
Parameters
| Type | Name | Description |
|---|---|---|
| System.EventHandler | handler | User delegate on method which must catch event raising. |
DetachEvent(EventHandler)
Detaches user method to the current event.
Declaration
void DetachEvent(EventHandler handler)
Parameters
| Type | Name | Description |
|---|---|---|
| System.EventHandler | handler | User delegate on method which must catch event raising. |