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 that is going to be dragged.
Declaration
public List<T> Data { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> | A list of the row data associated with the drag start action. |
FromIndex
Gets the row index of the row associated with the drag start action.
Declaration
public int FromIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the row that is being dragged from the grid. |