C# Class SFML.Window.MouseWheelEventArgs

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

Public Properties

Property Type Description
Delta int
X int
Y int

Public Methods

Method Description
MouseWheelEventArgs ( MouseWheelEvent e ) : System

Construct the mouse wheel arguments from a mouse wheel event

ToString ( ) : string

Provide a string describing the object

Method Details

MouseWheelEventArgs() public method

Construct the mouse wheel arguments from a mouse wheel event
public MouseWheelEventArgs ( MouseWheelEvent e ) : System
e MouseWheelEvent Mouse wheel event
return System

ToString() public method

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

Property Details

Delta public_oe property

Scroll amount
public int Delta
return int

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