C# 클래스 Axiom.Input.MouseEventArgs

Events args for mouse input events.
상속: Axiom.Input.InputEventArgs
파일 보기 프로젝트 열기: WolfgangSt/axiom 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
button MouseButtons
relativeX float
relativeY float
relativeZ float
x float
y float
z float

공개 메소드들

메소드 설명
MouseEventArgs ( MouseButtons button, ModifierKeys modifiers, float x, float y, float z ) : System

Constructor.

MouseEventArgs ( MouseButtons button, ModifierKeys modifiers, float x, float y, float z, float relX, float relY, float relZ ) : System

Constructor.

메소드 상세

MouseEventArgs() 공개 메소드

Constructor.
public MouseEventArgs ( MouseButtons button, ModifierKeys modifiers, float x, float y, float z ) : System
button MouseButtons Mouse button pressed.
modifiers ModifierKeys Any modifier keys that are down.
x float Mouse X position.
y float Mouse Y position.
z float Mouse Z position.
리턴 System

MouseEventArgs() 공개 메소드

Constructor.
public MouseEventArgs ( MouseButtons button, ModifierKeys modifiers, float x, float y, float z, float relX, float relY, float relZ ) : System
button MouseButtons Mouse button pressed.
modifiers ModifierKeys Any modifier keys that are down.
x float Mouse X position.
y float Mouse Y position.
z float Mouse Z position.
relX float Relative mouse X position.
relY float Relative mouse Y position.
relZ float Relative mouse Z position.
리턴 System

프로퍼티 상세

button 보호되어 있는 프로퍼티

Mouse button pressed during this event.
protected MouseButtons button
리턴 MouseButtons

relativeX 보호되어 있는 프로퍼티

Relative X coordinate of the mouse.
protected float relativeX
리턴 float

relativeY 보호되어 있는 프로퍼티

Relative Y coordinate of the mouse.
protected float relativeY
리턴 float

relativeZ 보호되어 있는 프로퍼티

Relative Z coordinate of the mouse.
protected float relativeZ
리턴 float

x 보호되어 있는 프로퍼티

X coordinate of the mouse.
protected float x
리턴 float

y 보호되어 있는 프로퍼티

Y coordinate of the mouse.
protected float y
리턴 float

z 보호되어 있는 프로퍼티

Z coordinate of the mouse.
protected float z
리턴 float