Class ItemViewInteractionEventArgs<TItemView>
Event arguments providing information about a user interaction performed over an item from the RadItemsView control.
Inheritance
Namespace: Telerik.Maui.Controls.ItemsView
Assembly: Telerik.Maui.Controls.dll
Syntax
public abstract class ItemViewInteractionEventArgs<TItemView> : EventArgs where TItemView : ItemView
Type Parameters
TItemView
|
Constructors
ItemViewInteractionEventArgs(TItemView)
Initializes a new instance of the ItemViewInteractionEventArgs<TItemView> class.
Declaration
protected ItemViewInteractionEventArgs(TItemView view)
Parameters
TItemView
view
Specifies the ItemView from the RadItemsView control for which the interaction is performed. |
ItemViewInteractionEventArgs(TItemView, Object)
Initializes a new instance of the ItemViewInteractionEventArgs<TItemView> class.
Declaration
protected ItemViewInteractionEventArgs(TItemView view, object item)
Parameters
TItemView
view
Specifies the ItemView from the RadItemsView control for which the interaction is performed. |
System.Object
item
Specifies the data item from the RadItemsView control for which the interaction is performed. |
Properties
Item
Gets the data item from the RadItemsView control for which the interaction is performed.
Declaration
public object Item { get; }
Property Value
System.Object
|
View
Gets the ItemView from the RadItemsView control for which the interaction is performed.
Declaration
public TItemView View { get; }
Property Value
TItemView
|