This documentation is for the old version. Go to the latest Graphics Mill docs

MouseEventArgs Constructor (MouseButtons, Int32, Single, Single)

Create and initializes a new MouseEventArgs object.

Namespace: Aurigma.GraphicsMill.WinControls
Assembly: Aurigma.GraphicsMill.WinControls (in Aurigma.GraphicsMill.WinControls.dll)

Syntax

Visual Basic
Public Sub New ( _
	button As MouseButtons, _
	clicks As Integer, _
	x As Single, _
	y As Single _
)
C#
public MouseEventArgs(
	MouseButtons button,
	int clicks,
	float x,
	float y
)

Parameters

button

Type: System.Windows.Forms.MouseButtons

One of the MouseButtons values.
clicks

Type: System.Int32

The number of times the mouse button was pressed and released.
x

Type: System.Single

The x-coordinate of the mouse, in pixels.
y

Type: System.Single

The y-coordinate of the mouse, in pixels.

See Also

Reference