Class TreeViewItemDragOverEventArgs
Represents the class that provides the data for the ItemDragOver event.
Inheritance
System.Object
TreeViewItemDragOverEventArgs
Namespace: Syncfusion.UI.Xaml.TreeView
Assembly: Syncfusion.SfTreeView.WPF.dll
Syntax
public class TreeViewItemDragOverEventArgs : EventArgs
Constructors
TreeViewItemDragOverEventArgs()
Intializes a new instance of the TreeViewItemDragOverEventArgs class.
Declaration
public TreeViewItemDragOverEventArgs()
Properties
Data
Declaration
public IDataObject Data { get; }
Property Value
Type |
---|
System.Windows.IDataObject |
DraggingNodes
Gets the collection of TreeViewNode which are dragged.
Declaration
public ObservableCollection<TreeViewNode> DraggingNodes { get; }
Property Value
Type |
---|
System.Collections.ObjectModel.ObservableCollection<TreeViewNode> |
DragSource
Gets the reference to the dependency object that is the source of the transferred data.
Declaration
public object DragSource { get; }
Property Value
Type |
---|
System.Object |
DropPosition
Gets or sets the position where dragged nodes are going to be dropped.
Declaration
public DropPosition DropPosition { get; set; }
Property Value
Type |
---|
DropPosition |
TargetNode
Gets the node where the dragged nodes are going to be dropped.
Declaration
public TreeViewNode TargetNode { get; }
Property Value
Type |
---|
TreeViewNode |