Table of Contents

Enum MouseEventTypes

Namespace
HP.LFT.SDK.Web
Assembly
HP.LFT.SDK.dll

Supported mouse event types.

public enum MouseEventTypes

Fields

OnClick = 0

The event occurs when the user clicks on an element.

OnContextMenu = 6

The event occurs when the user right-clicks on an element to open a context menu.

OnDblClick = 1

The event occurs when the user double-clicks on an element.

OnMouseDown = 2

The event occurs when a user presses a mouse button over an element.

OnMouseEnter = 7

The event occurs when the pointer is moved onto an element.

OnMouseLeave = 8

The event occurs when the user moves the mouse pointer out of an element.

OnMouseMove = 9

The event occurs when the pointer is moving while it is over an element.

OnMouseOut = 5

The event occurs when a user moves the mouse pointer out of an element or one of its children.

OnMouseOver = 4

The event occurs when the pointer is moved onto an element or one of its children.

OnMouseUp = 3

The event occurs when a user releases a mouse button over an element.