Class ItemViewTappedEventArgs
Event arguments providing information about a tapped item in the RadItemsView control.
Inheritance
Inherited Members
Namespace: Telerik.Maui.Controls.ItemsView
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ItemViewTappedEventArgs : ItemViewInteractionEventArgs
Constructors
ItemViewTappedEventArgs(ItemView)
Initializes a new instance of the ItemViewTappedEventArgs class.
Declaration
public ItemViewTappedEventArgs(ItemView view)
Parameters
ItemView
view
Specifies the tapped ItemView in the RadItemsView control. |
ItemViewTappedEventArgs(ItemView, Object)
Initializes a new instance of the ItemViewTappedEventArgs class.
Declaration
public ItemViewTappedEventArgs(ItemView view, object item)
Parameters
ItemView
view
Specifies the tapped ItemView in the RadItemsView control. |
System.Object
item
Specifies the tapped data item in the RadItemsView control. |
Properties
Handled
Gets or sets a value indicating whether the event handler has already handled the tap gesture. When set to true, the default handling of the tap gesture is not executed. When set to false, the default handling of the tap gesture is executed.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|