Class ItemRightTappedEventArgs
Provides data for the ItemRightTapped event.
Inheritance
System.Object
ItemRightTappedEventArgs
Namespace: Syncfusion.Maui.TreeView
Assembly: Syncfusion.Maui.TreeView.dll
Syntax
public class ItemRightTappedEventArgs : EventArgs
Constructors
ItemRightTappedEventArgs()
Initializes a new instance of the ItemRightTappedEventArgs class.
Declaration
public ItemRightTappedEventArgs()
Properties
Node
Gets the data object associated with the TreeViewItem at the tapped position.
Declaration
public TreeViewNode Node { get; }
Property Value
Type | Description |
---|---|
TreeViewNode | An object that represents the item at the tapped position. |
Position
Gets the touch position at the tapped position.
Declaration
public Point Position { get; }
Property Value
Type | Description |
---|---|
Microsoft.Maui.Graphics.Point | It represents the touch position at the tapped item. |