C# Class SFML.Window.MouseMoveEventArgs

Mouse move event parameters
Inheritance: System.EventArgs
ファイルを表示 Open project: SFML/SFML.Net Class Usage Examples

Public Properties

Property Type Description
X int
Y int

Public Methods

Method Description
MouseMoveEventArgs ( MouseMoveEvent e ) : System

Construct the mouse move arguments from a mouse move event

ToString ( ) : string

Provide a string describing the object

Method Details

MouseMoveEventArgs() public method

Construct the mouse move arguments from a mouse move event
public MouseMoveEventArgs ( MouseMoveEvent e ) : System
e MouseMoveEvent Mouse move event
return System

ToString() public method

Provide a string describing the object
public ToString ( ) : string
return string

Property Details

X public_oe property

X coordinate of the mouse cursor
public int X
return int

Y public_oe property

Y coordinate of the mouse cursor
public int Y
return int