Skip to main content
A newer version of this page is available. .

MouseHandlerServiceWrapper.OnMouseMove(PortableMouseEventArgs) Method

Override this method to handle the MouseMove event.

Namespace: DevExpress.Services

Assembly: DevExpress.Data.v20.2.dll

NuGet Packages: DevExpress.Data, DevExpress.WindowsDesktop.Data

Declaration

public virtual void OnMouseMove(
    PortableMouseEventArgs e
)

Parameters

Name Type Description
e DevExpress.Portable.Input.PortableMouseEventArgs

This class is equivalent to System.Windows.Forms.MouseEventArgs and contains information on a pressed mouse button, the mouse coordinates, and the amount the mouse wheel moved.

Remarks

The MouseMove event occurs when a user moves the mouse pointer over a control. Use the OnMouseMove method to handle mouse movements.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the OnMouseMove(PortableMouseEventArgs) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also