Table of Contents

Class SwipeEventArgs

Namespace
MudBlazor
Assembly
MudBlazor.dll

Provides event data for the swipe event.

public class SwipeEventArgs
Inheritance
SwipeEventArgs
Inherited Members
Extension Methods

Constructors

SwipeEventArgs(PointerEventArgs, SwipeDirection, double?, MudSwipeArea)

Initializes a new instance of the SwipeEventArgs class.

public SwipeEventArgs(PointerEventArgs touchEventArgs, SwipeDirection swipeDirection, double? swipeDelta, MudSwipeArea sender)

Parameters

touchEventArgs PointerEventArgs

The touch event arguments associated with the swipe event.

swipeDirection SwipeDirection

The direction of the swipe.

swipeDelta double?

The swipe delta value indicating the distance of the swipe movement.

sender MudSwipeArea

The sender of the swipe event.

Properties

Sender

Gets the sender of the swipe event.

public MudSwipeArea Sender { get; }

Property Value

MudSwipeArea

SwipeDelta

Gets the swipe delta value indicating the distance of the swipe movement.

public double? SwipeDelta { get; }

Property Value

double?

SwipeDirection

Gets the direction of the swipe.

public SwipeDirection SwipeDirection { get; }

Property Value

SwipeDirection

TouchEventArgs

Gets information about a touch event that is being raised.

public PointerEventArgs TouchEventArgs { get; }

Property Value

PointerEventArgs