Class
ItemSwipeStartingEventArgs

Provides data for the item swipe starting event.

Definition

Namespace:Telerik.Maui.Controls.Compatibility.DataControls.ListView

Assembly:Telerik.Maui.Controls.Compatibility.dll

Syntax:

cs-api-definition
public class ItemSwipeStartingEventArgs : EventArgs

Inheritance: objectEventArgsItemSwipeStartingEventArgs

Inherited Members EventArgs.Empty

Constructors

ItemSwipeStartingEventArgs(object)

Initializes a new instance of the ItemSwipeStartingEventArgs class.

Declaration

cs-api-definition
public ItemSwipeStartingEventArgs(object item)

Parameters

item

object

The item that is starting to be swiped.

Properties

Cancel

Gets or sets a value indicating whether the swipe operation should be canceled.

Declaration

cs-api-definition
public bool Cancel { get; set; }

Property Value

bool

true to cancel the swipe operation; otherwise, false.

Item

Gets the item that is starting to be swiped.

Declaration

cs-api-definition
public object Item { get; }

Property Value

object

The item being swiped.