Class MouseWheelEventArgs
- Namespace
- Vintagestory.API.Client
- Assembly
- VintagestoryAPI.dll
The event arguments for the mouse.
public class MouseWheelEventArgs
- Inheritance
-
MouseWheelEventArgs
- Inherited Members
- Extension Methods
Fields
delta
The rough change in time since last called.
public int delta
Field Value
deltaPrecise
The precise change in time since last called.
public float deltaPrecise
Field Value
value
The rough change in value.
public int value
Field Value
valuePrecise
The precise change in value.
public float valuePrecise
Field Value
Properties
IsHandled
Is the current event being handled?
public bool IsHandled { get; }
Property Value
Methods
SetHandled(bool)
Changes or sets the current handled state.
public void SetHandled(bool value = true)
Parameters
value
boolShould the event be handled?