Click or drag to resize

IEvents Interface

A collection of custom DOM events that can be listened and/or handled.

Namespace:  DotNetBrowser.Dom.Events
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
public interface IEvents

The IEvents type exposes the following members.

Properties
  NameDescription
Public propertyItem
Gets or sets the custom DOM event to listen.
Top
Events
  NameDescription
Public eventAbort
Occurs when the loading of a resource has been aborted.
Public eventBlur
Occurs when an element loses focus.
Public eventChange
Occurs when the content of a form element, the selection, or the checked state have changed (for <input>, <select>, and <textarea>).
Public eventClick
Occurs when the user clicks on an element.
Public eventDoubleClick
Occurs when the user double-clicks on an element.
Public eventError
Occurs when an error occurs while loading an external file.
Public eventFocus
Occurs when an element gets focus.
Public eventKeyDown
Occurs when the user presses a key.
Public eventKeyPress
Occurs when the user presses a key that produces a character value.
Public eventKeyUp
Occurs when the user releases a key.
Public eventLoad
Occurs when an object has loaded.
Public eventMouseDown
Occurs when the user presses a mouse button over an element.
Public eventMouseMove
Occurs when the pointer is moving while it is over an element.
Public eventMouseOut
Occurs when a user moves the mouse pointer out of an element, or out of one of its children
Public eventMouseOver
Occurs when the pointer is moved onto an element, or onto one of its children.
Public eventMouseUp
Occurs when a user releases a mouse button over an element.
Public eventReset
Occurs when a form is reset.
Public eventResize
Occurs when the document view is resized.
Public eventScroll
Occurs when an element's scrollbar is being scrolled.
Public eventSelect
Occurs after the user selects some text (for <input> and <textarea>).
Public eventSubmit
Occurs when a form is submitted.
Public eventUnload
Occurs once a page has unloaded (for <body>).
Public eventWheel
Occurs when user scrolls a mouse wheel over an element.
Top
See Also