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
PointerEventArgsThe touch event arguments associated with the swipe event.
swipeDirection
SwipeDirectionThe direction of the swipe.
swipeDelta
double?The swipe delta value indicating the distance of the swipe movement.
sender
MudSwipeAreaThe sender of the swipe event.
Properties
Sender
Gets the sender of the swipe event.
public MudSwipeArea Sender { get; }
Property Value
SwipeDelta
Gets the swipe delta value indicating the distance of the swipe movement.
public double? SwipeDelta { get; }
Property Value
SwipeDirection
Gets the direction of the swipe.
public SwipeDirection SwipeDirection { get; }
Property Value
TouchEventArgs
Gets information about a touch event that is being raised.
public PointerEventArgs TouchEventArgs { get; }