Click or drag to resize

EventType Class

The DOM event type. Wraps a string that specifies the name of the event without the "on" prefix.
Inheritance Hierarchy
SystemObject
  DotNetBrowser.Dom.EventsEventType

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

The EventType type exposes the following members.

Constructors
  NameDescription
Public methodEventType
Constructs an EventType instance from the given string.
Top
Properties
  NameDescription
Public propertyValue
The DOM event type as string value.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object).)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Overrides ObjectGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
The overloaded operator that simplifies comparing the EventType objects.
Public operatorStatic memberInequality
The overloaded operator that simplifies comparing the EventType objects.
Top
Fields
  NameDescription
Public fieldStatic memberAbort
The "abort" event type.
Public fieldStatic memberBlur
The "blur" event type.
Public fieldStatic memberChange
The "change" event type.
Public fieldStatic memberClick
The "click" event type.
Public fieldStatic memberDoubleClick
The "dblclick" event type.
Public fieldStatic memberError
The "error" event type.
Public fieldStatic memberFocus
The "focus" event type.
Public fieldStatic memberKeyDown
The "keydown" event type.
Public fieldStatic memberKeyPress
The "keypress" event type.
Public fieldStatic memberKeyUp
The "keyup" event type.
Public fieldStatic memberLoad
The "load" event type.
Public fieldStatic memberMouseDown
The "mousedown" event type.
Public fieldStatic memberMouseMove
The "mousemove" event type.
Public fieldStatic memberMouseOut
The "mouseout" event type.
Public fieldStatic memberMouseOver
The "mouseover" event type.
Public fieldStatic memberMouseUp
The "mouseup" event type.
Public fieldStatic memberReset
The "reset" event type.
Public fieldStatic memberResize
The "resize" event type.
Public fieldStatic memberScroll
The "scroll" event type.
Public fieldStatic memberSelect
The "select" event type.
Public fieldStatic memberSubmit
The "submit" event type.
Public fieldStatic memberTouchCancel
The "touchcancel" event type.
Public fieldStatic memberTouchEnd
The "touchend" event type.
Public fieldStatic memberTouchMove
The "touchmove" event type.
Public fieldStatic memberTouchStart
The "touchstart" event type.
Public fieldStatic memberUnload
The "unload" event type.
Public fieldStatic memberWheel
The "wheel" event type.
Top
See Also