In This Article

InputMouseWheelFrame Class

Event arguments that represent a wrapped MouseWheelEventArgs, for testing and mocking.

public class InputMouseWheelFrame : IInputMouseWheelFrame
Inheritance:
object object
Implements:
IInputMouseWheelFrame

Constructors

InputMouseWheelFrame(MouseWheelEventArgs)

Initializes a new instance of the InputMouseWheelEventArgs class.

public InputMouseWheelFrame(MouseWheelEventArgs args)
Parameter Type Description
args MouseWheelEventArgs

The MouseWheelEventArgs instance containing the event data.

Properties

Delta

Gets the delta.

public int Delta { get; }

Property Value

int:

The delta.

Handled

Gets or sets a value indicating whether this InputMouseWheelEventArgs is handled.

public bool Handled { get; set; }

Property Value

bool:

true if handled; otherwise, false.

WrappedEventArgs

Gets the wrapped event arguments.

public MouseWheelEventArgs WrappedEventArgs { get; }

Property Value

MouseWheelEventArgs:

The wrapped event arguments.

Inherited Members