Class ItemDoubleTappedEventArgs
Provides data for the ItemDoubleTapped event.
Inheritance
System.Object
ItemDoubleTappedEventArgs
Namespace: Syncfusion.Maui.ListView
Assembly: Syncfusion.Maui.ListView.dll
Syntax
public class ItemDoubleTappedEventArgs : EventArgs
Constructors
ItemDoubleTappedEventArgs(ItemType, Object, Point)
Initializes a new instance of the ItemDoubleTappedEventArgs class.
Declaration
public ItemDoubleTappedEventArgs(ItemType itemType, object dataItem, Point position)
Parameters
Type | Name | Description |
---|---|---|
ItemType | itemType | The item type of the double tapped item. |
System.Object | dataItem | The item data of the double tapped item. |
Microsoft.Maui.Graphics.Point | position | The touch position at the double tapped item. |
Properties
DataItem
Gets the item data of the double tapped item.
Declaration
public object DataItem { get; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents the item of the double tapped item. |
Handled
Gets or sets a value indicating whether to handle the event or not.
Declaration
public bool Handled { get; set; }
Property Value
Type |
---|
System.Boolean |
ItemType
Gets the item type of the double tapped item.
Declaration
public ItemType ItemType { get; }
Property Value
Type | Description |
---|---|
ItemType | It represents the item type of the tapped item. |
Position
Gets The touch position at the double tapped item.
Declaration
public Point Position { get; }
Property Value
Type | Description |
---|---|
Microsoft.Maui.Graphics.Point | It represents the touch position of the double tapped item. |