Class TreeGridRowDragEventArgs
Provides commmon data for TreeGridRowDragEvents.
Inheritance
System.Object
TreeGridRowDragEventArgs
Namespace: Syncfusion.UI.Xaml.TreeGrid
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public abstract class TreeGridRowDragEventArgs : EventArgs
Constructors
TreeGridRowDragEventArgs()
Initializes a new instance of TreeGridRowDragEventArgs event.
Declaration
public TreeGridRowDragEventArgs()
Properties
Data
Gets or sets a data object while dragging the rows.
Declaration
public DataPackageView Data { get; }
Property Value
Type |
---|
Windows.ApplicationModel.DataTransfer.DataPackageView |
DraggingNodes
Gets the TreeNode which contains the data associated while dragging the rows.
Declaration
public ObservableCollection<TreeNode> DraggingNodes { get; set; }
Property Value
Type |
---|
System.Collections.ObjectModel.ObservableCollection<TreeNode> |
DropPosition
Gets a value indicating the drop position which is based on dropped location
Declaration
public TreeGridRowDropPosition DropPosition { get; }
Property Value
Type |
---|
TreeGridRowDropPosition |
TargetNode
Gets a value indicating the target node which is going to drop.
Declaration
public TreeNode TargetNode { get; }
Property Value
Type |
---|
TreeNode |