Table of Contents

Interface IDatagridDragEventArgs<T>

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

Represents the arguments of the datagrid drag event.

public interface IDatagridDragEventArgs<out T>

Type Parameters

T

The type of the item.

Properties

Item

Gets the dragged item.

T Item { get; }

Property Value

T

NewIndex

Gets the index where the dragged item is being dropped.

int NewIndex { get; }

Property Value

int