Class ItemDoubleTappedEventArgs
Provides data for the ItemDoubleTapped event.
Inheritance
System.Object
System.EventArgs
ItemDoubleTappedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.UI.Xaml.TreeView
Assembly: Syncfusion.SfTreeView.WPF.dll
Syntax
public class ItemDoubleTappedEventArgs : EventArgs
Constructors
ItemDoubleTappedEventArgs()
Initializes a new instance of the ItemDoubleTappedEventArgs class.
Declaration
public ItemDoubleTappedEventArgs()
Properties
Handled
Gets or sets a value indicating whether to handle the event or not.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Node
Gets the data object associated with TreeViewItem at the double 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 double tapped position.
Declaration
public Point Position { get; }
Property Value
Type | Description |
---|---|
System.Windows.Point | It represents the touch position at the double tapped item. |