Class ItemSwipingEventArgs
Provides data for the item swiping event that occurs during a swipe gesture.
Inheritance
System.Object
ItemSwipingEventArgs
Namespace: Telerik.Maui.Controls.Compatibility.DataControls.ListView
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public class ItemSwipingEventArgs : EventArgs
Constructors
ItemSwipingEventArgs(Object, Double)
Initializes a new instance of the ItemSwipingEventArgs class.
Declaration
public ItemSwipingEventArgs(object item, double offset)
Parameters
System.Object
item
The item that is being swiped. |
System.Double
offset
The current offset distance of the swipe gesture. |
Properties
Item
Gets the item that is being swiped.
Declaration
public object Item { get; }
Property Value
System.Object
The item being swiped. |
Offset
Gets the current offset distance of the swipe gesture.
Declaration
public double Offset { get; }
Property Value
System.Double
The current swipe offset distance. |