In This Article

InputPointerWheelEventArgs Class

Provides event data for pointer wheel input events.

public class InputPointerWheelEventArgs : InputPointerEventArgs
Inheritance:
object EventArgs InputPointerEventArgs object

Constructors

InputPointerWheelEventArgs(MouseWheelEventArgs)

Provides event data for pointer wheel input events.

public InputPointerWheelEventArgs(MouseWheelEventArgs e)
Parameter Type Description
e MouseWheelEventArgs

The wrapped event arguments.

Properties

Delta

The pointer wheel delta.

public int Delta { get; }

Property Value

int

IsHorizontal

Indicates whether the event is for a horizontal mouse wheel.

public bool IsHorizontal { get; }

Property Value

bool:

true if the event is for a horizontal mouse wheel; otherwise, false for a vertical mouse wheel.

ScrollCharacters

The number of character to scroll when the horizontal pointer wheel turns.

public int ScrollCharacters { get; }

Property Value

int

ScrollLines

The number of lines to scroll when the vertical pointer wheel turns.

public int ScrollLines { get; }

Property Value

int

SingleUnitDelta

The pointer wheel delta for a single unit.

public int SingleUnitDelta { get; }

Property Value

int

WrappedEventArgs

The wrapped event arguments.

public MouseWheelEventArgs WrappedEventArgs { get; }

Property Value

MouseWheelEventArgs

Methods

ToString()

Returns the string representation of this object.

public override string ToString()

Returns

string:

The string representation of this object.

Inherited Members

Extension Methods