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