Class CollectionViewSwipingEventArgs
Represents the event arguments for the Swiping event.
Inheritance
System.Object
CollectionViewSwipingEventArgs
Namespace: Telerik.Maui.Controls.CollectionView
Assembly: Telerik.Maui.Controls.dll
Syntax
public class CollectionViewSwipingEventArgs : EventArgs
Constructors
CollectionViewSwipingEventArgs(Object, Double)
Initializes a new instance of the CollectionViewSwipingEventArgs class.
Declaration
public CollectionViewSwipingEventArgs(object item, double offset)
Parameters
System.Object
item
|
System.Double
offset
|
Properties
Item
Gets the item that is currently swiped.
Declaration
public object Item { get; }
Property Value
System.Object
|
Offset
Gets the offset of the swiped item from its initial position.
Declaration
public double Offset { get; }
Property Value
System.Double
|