C# Syntax
public enum MouseEventTypes : System.Enum
Member | Description |
---|---|
OnClick | The event occurs when the user clicks on an element. |
OnContextMenu | The event occurs when the user right-clicks on an element to open a context menu. |
OnDblClick | The event occurs when the user double-clicks on an element. |
OnMouseDown | The event occurs when a user presses a mouse button over an element. |
OnMouseEnter | The event occurs when the pointer is moved onto an element. |
OnMouseLeave | The event occurs when the user moves the mouse pointer out of an element. |
OnMouseMove | The event occurs when the pointer is moving while it is over an element. |
OnMouseOut | The event occurs when a user moves the mouse pointer out of an element or one of its children. |
OnMouseOver | The event occurs when the pointer is moved onto an element or one of its children. |
OnMouseUp | The event occurs when a user releases a mouse button over an element. |
System.Object
System.ValueType
System.Enum
HP.LFT.SDK.Web.MouseEventTypes