Table of Contents

Interface ITreeViewDragEventArgs<T>

Namespace
GroupeIsa.Neos.Designer.UIAbstractions
Assembly
GroupeIsa.Neos.Designer.UIAbstractions.dll

Represents the arguments of the tree view drag event.

public interface ITreeViewDragEventArgs<out T>

Type Parameters

T

The type of the item.

Properties

DraggedNode

Gets the dragged node.

T DraggedNode { get; }

Property Value

T

NewIndex

Gets the index where the dragged node is being dropped.

int NewIndex { get; }

Property Value

int

NewParentNode

Gets the parent node where the dragged node is being dropped. If null, the node is being dropped at the root level.

T? NewParentNode { get; }

Property Value

T

ParentNode

Gets the parent node of the dragged node. If null, the dragged node is at the root level.

T? ParentNode { get; }

Property Value

T