Class RowDragStartingEventArgs<T>
Provides information about the RowDragStarting event.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowDragStartingEventArgs<T> : GridEventBaseArgs
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component. |
Constructors
RowDragStartingEventArgs()
Declaration
public RowDragStartingEventArgs()
Properties
Data
Gets the collection of row data going to be dragged.
Declaration
public List<T> Data { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> | A collection of row data associated with drag start action. |
FromIndex
Gets the row index of the row associated with drag start action..
Declaration
public int FromIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Index of the row which is dragged from the grid. |