AxHost.RaiseOnMouseMove Method

Definition

Raises the MouseMove event.

Overloads

RaiseOnMouseMove(Object, Object, Object, Object)

Raises the MouseMove event using the specified objects.

RaiseOnMouseMove(Int16, Int16, Int32, Int32)

Raises the MouseMove event using the specified 32-bit signed integers.

RaiseOnMouseMove(Int16, Int16, Single, Single)

Raises the MouseMove event using the specified single-precision floating-point numbers.

RaiseOnMouseMove(Object, Object, Object, Object)

Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs

Raises the MouseMove event using the specified objects.

C#
protected void RaiseOnMouseMove(object o1, object o2, object o3, object o4);

Parameters

o1
Object

One of the MouseButtons values that indicate which mouse button was pressed.

o2
Object

Not used.

o3
Object

The x-coordinate of a mouse click, in pixels.

o4
Object

The y-coordinate of a mouse click, in pixels.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

RaiseOnMouseMove(Int16, Int16, Int32, Int32)

Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs

Raises the MouseMove event using the specified 32-bit signed integers.

C#
protected void RaiseOnMouseMove(short button, short shift, int x, int y);

Parameters

button
Int16

One of the MouseButtons values that indicate which mouse button was pressed.

shift
Int16

Not used.

x
Int32

The x-coordinate of a mouse click, in pixels.

y
Int32

The y-coordinate of a mouse click, in pixels.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

RaiseOnMouseMove(Int16, Int16, Single, Single)

Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs

Raises the MouseMove event using the specified single-precision floating-point numbers.

C#
protected void RaiseOnMouseMove(short button, short shift, float x, float y);

Parameters

button
Int16

One of the MouseButtons values that indicate which mouse button was pressed.

shift
Int16

Not used.

x
Single

The x-coordinate of a mouse click, in pixels.

y
Single

The y-coordinate of a mouse click, in pixels.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10