C# Class OpenTK.Input.MouseEventArgs

Defines the event data for MouseDevice events.

Do not cache instances of this type outside their event handler. If necessary, you can clone an instance using the MouseEventArgs(MouseEventArgs) constructor.

Inheritance: System.EventArgs
Mostrar archivo Open project: prepare/HTML-Renderer Class Usage Examples

Public Methods

Method Description
MouseEventArgs ( ) : System

Constructs a new instance.

MouseEventArgs ( MouseEventArgs args ) : System

Constructs a new instance.

MouseEventArgs ( int x, int y ) : System

Constructs a new instance.

Method Details

MouseEventArgs() public method

Constructs a new instance.
public MouseEventArgs ( ) : System
return System

MouseEventArgs() public method

Constructs a new instance.
public MouseEventArgs ( MouseEventArgs args ) : System
args MouseEventArgs The instance to clone.
return System

MouseEventArgs() public method

Constructs a new instance.
public MouseEventArgs ( int x, int y ) : System
x int The X position.
y int The Y position.
return System