Enum MouseEventTypes
Supported mouse event types.
public enum MouseEventTypes
Fields
OnClick = 0The event occurs when the user clicks on an element.
OnContextMenu = 6The event occurs when the user right-clicks on an element to open a context menu.
OnDblClick = 1The event occurs when the user double-clicks on an element.
OnMouseDown = 2The event occurs when a user presses a mouse button over an element.
OnMouseEnter = 7The event occurs when the pointer is moved onto an element.
OnMouseLeave = 8The event occurs when the user moves the mouse pointer out of an element.
OnMouseMove = 9The event occurs when the pointer is moving while it is over an element.
OnMouseOut = 5The event occurs when a user moves the mouse pointer out of an element or one of its children.
OnMouseOver = 4The event occurs when the pointer is moved onto an element or one of its children.
OnMouseUp = 3The event occurs when a user releases a mouse button over an element.