Class
ItemViewInteractionEventArgs<TItemView>

Event arguments providing information about a user interaction performed over an item from the RadItemsView control.

Definition

Namespace:Telerik.Maui.Controls.ItemsView

Assembly:Telerik.Maui.Controls.dll

Type Parameters:

TItemView

Syntax:

cs-api-definition
public abstract class ItemViewInteractionEventArgs<TItemView> : EventArgs where TItemView : ItemView

Inheritance: objectEventArgsItemViewInteractionEventArgs<TItemView>

Derived Classes: ItemViewInteractionEventArgsTreeViewItemViewInteractionEventArgs

Inherited Members EventArgs.Empty

Constructors

ItemViewInteractionEventArgs(TItemView)

Initializes a new instance of the ItemViewInteractionEventArgs<TItemView> class.

Declaration

cs-api-definition
protected ItemViewInteractionEventArgs(TItemView view)

Parameters

view

TItemView

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

cs-api-definition
protected ItemViewInteractionEventArgs(TItemView view, object item)

Parameters

view

TItemView

Specifies the ItemView from the RadItemsView control for which the interaction is performed.

item

object

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

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

Property Value

object

View

Gets the ItemView from the RadItemsView control for which the interaction is performed.

Declaration

cs-api-definition
public TItemView View { get; }

Property Value

TItemView