Class SwipingEventArgs
Provides data for the Swiping event.
Inheritance
System.Object
    SwipingEventArgs
  Namespace: Syncfusion.ListView.XForms
Assembly: Syncfusion.SfListView.XForms.dll
Syntax
public class SwipingEventArgs : EventArgs
  Constructors
SwipingEventArgs()
Declaration
public SwipingEventArgs()
  Properties
Handled
Gets or sets a value indicating whether the current swiped offset of swiped ListViewItem should be remain same till the SwipeEnded is raised.
Declaration
public bool Handled { get; set; }
  Property Value
| Type | 
|---|
| System.Boolean | 
ItemData
Gets the underlying data object of the ListViewItem being swiped from the bound data source.
Declaration
public object ItemData { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Object | The underlying data object of the listViewItem being swiped from the bound data source.  | 
      
ItemIndex
Gets the index of swiped ListViewItem in the DataSource.DisplayItems of SfListView.
Declaration
public int ItemIndex { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | The item index of the swiped listViewItem.  | 
      
SwipeDirection
Gets the swipe direction of the swiped ListViewItem.
Declaration
public SwipeDirection SwipeDirection { get; }
  Property Value
| Type | Description | 
|---|---|
| SwipeDirection | The swipe direction of the swiped listViewItem.  | 
      
SwipeOffSet
Gets the current swipe offset of the ListViewItem being swiped.
Declaration
public double SwipeOffSet { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Double | The current swipe offset of the listViewItem being swiped.  |