Table of Contents

Class MouseWheelEventArgs

Namespace
Vintagestory.API.Client
Assembly
VintagestoryAPI.dll

The event arguments for the mouse.

public class MouseWheelEventArgs
Inheritance
MouseWheelEventArgs
Inherited Members

Fields

delta

The rough change in time since last called.

public int delta

Field Value

int

deltaPrecise

The precise change in time since last called.

public float deltaPrecise

Field Value

float

value

The rough change in value.

public int value

Field Value

int

valuePrecise

The precise change in value.

public float valuePrecise

Field Value

float

Properties

IsHandled

Is the current event being handled?

public bool IsHandled { get; }

Property Value

bool

Methods

SetHandled(bool)

Changes or sets the current handled state.

public void SetHandled(bool value = true)

Parameters

value bool

Should the event be handled?