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