Class ItemTappedEventArgs
Provides data for the ItemTapped event.
Inheritance
System.Object
ItemTappedEventArgs
Namespace: Syncfusion.Maui.AIAssistView
Assembly: Syncfusion.Maui.AIAssistView.dll
Syntax
public class ItemTappedEventArgs : EventArgs
Constructors
ItemTappedEventArgs(IAssistItem, Point)
Initializes a new instance of the ItemTappedEventArgs class.
Declaration
public ItemTappedEventArgs(IAssistItem message, Point position)
Parameters
Type | Name | Description |
---|---|---|
IAssistItem | message | The instance of the tapped item. |
Microsoft.Maui.Graphics.Point | position | The touch position of the interaction. |
Properties
Item
Gets the IAssistItem that was tapped.
Declaration
public IAssistItem Item { get; }
Property Value
Type |
---|
IAssistItem |
Position
Gets the interacted touch position as Microsoft.Maui.Graphics.Point.
Declaration
public Point Position { get; }
Property Value
Type |
---|
Microsoft.Maui.Graphics.Point |