Interface IEvents
- Namespace
- DotNetBrowser.Dom.Events
- Assembly
- DotNetBrowser.dll
A collection of custom DOM events that can be listened and/or handled.
public interface IEvents
Properties
- this[EventType, bool]
Gets or sets the custom DOM event to listen.
Events
- Abort
Occurs when the loading of a resource has been aborted.
- Blur
Occurs when an element loses focus.
- Change
Occurs when the content of a form element, the selection, or the checked state have changed (for <input>, <select>, and <textarea>).
- Click
Occurs when the user clicks on an element.
- DoubleClick
Occurs when the user double-clicks on an element.
- Error
Occurs when an error occurs while loading an external file.
- Focus
Occurs when an element gets focus.
- KeyDown
Occurs when the user presses a key.
- KeyPress
Occurs when the user presses a key that produces a character value.
- KeyUp
Occurs when the user releases a key.
- Load
Occurs when an object has loaded.
- MouseDown
Occurs when the user presses a mouse button over an element.
- MouseMove
Occurs when the pointer is moving while it is over an element.
- MouseOut
Occurs when a user moves the mouse pointer out of an element, or out of one of its children
- MouseOver
Occurs when the pointer is moved onto an element, or onto one of its children.
- MouseUp
Occurs when a user releases a mouse button over an element.
- Reset
Occurs when a form is reset.
- Resize
Occurs when the document view is resized.
- Scroll
Occurs when an element's scrollbar is being scrolled.
- Select
Occurs after the user selects some text (for <input> and <textarea>).
- Submit
Occurs when a form is submitted.
- TouchCancel
Occurs when one or more touch points have been disrupted in an implementation-specific manner.
- TouchEnd
Occurs when one or more touch points are removed from the touch surface.
- TouchMove
Occurs when one or more touch points are moved along the touch surface.
- TouchStart
Occurs when one or more touch points are placed on the touch surface.
- Unload
Occurs once a page has unloaded (for <body>).
- Wheel
Occurs when user scrolls a mouse wheel over an element.