Class ItemHoldingEventArgs
Provides data for the ItemHolding event.
Inheritance
System.Object
ItemHoldingEventArgs
Namespace: Syncfusion.XForms.TreeView
Assembly: Syncfusion.SfTreeView.XForms.dll
Syntax
public class ItemHoldingEventArgs : EventArgs
Constructors
ItemHoldingEventArgs()
Initializes a new instance of the ItemHoldingEventArgs class.
Declaration
public ItemHoldingEventArgs()
Properties
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 |
Node
Gets the data object associated with
Declaration
public TreeViewNode Node { get; }
Property Value
Type | Description |
---|---|
TreeViewNode | An object that represents the item at the long pressed position. |
Position
Gets the touch position at the long pressed position.
Declaration
public Point Position { get; }
Property Value
Type | Description |
---|---|
Xamarin.Forms.Point | An object that represents the touch position at the long pressed item. |