Axiom.Input.MouseEventArgs.MouseEventArgs C# (CSharp) Метод

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
		public MouseEventArgs( MouseButtons button, ModifierKeys modifiers, float x, float y, float z, float relX, float relY, float relZ )
			: base( modifiers )
		{
			this.button = button;
			this.x = x;
			this.y = y;
			this.z = z;
			this.relativeX = relX;
			this.relativeY = relY;
			this.relativeZ = relZ;
		}

Same methods

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