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
Afficher le fichier Open project: prepare/HTML-Renderer Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Constructs a new instance.
public MouseEventArgs ( ) : System
Résultat System

MouseEventArgs() public méthode

Constructs a new instance.
public MouseEventArgs ( MouseEventArgs args ) : System
args MouseEventArgs The instance to clone.
Résultat System

MouseEventArgs() public méthode

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