Class
CollectionViewItemHoldEventArgs

Provides data for the ItemHold event. This event is raised when a user performs a hold gesture on a collection view item.

Definition

Namespace:Telerik.Maui.Controls.CollectionView

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class CollectionViewItemHoldEventArgs : EventArgs

Inheritance: objectEventArgsCollectionViewItemHoldEventArgs

Inherited Members EventArgs.Empty

Constructors

CollectionViewItemHoldEventArgs(object)

Initializes a new instance of the CollectionViewItemHoldEventArgs class.

Declaration

cs-api-definition
public CollectionViewItemHoldEventArgs(object item)

Parameters

item

object

The data item associated with the held collection view item.

Properties

Item

Gets the data item associated with the collection view item that was held. This is the same object that would be found in the collection view's data source.

Declaration

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

Property Value

object