Class RowDragSelectedEventArgs<T>
Provides information about the RowDragSelectionCompleting and RowDragSelectionCompleted events, which occur when drag based selection ends in the Grid.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowDragSelectedEventArgs<T> : GridEventBaseArgs
Type Parameters
Name | Description |
---|---|
T | The type of the data bound to the Data Grid. |
Constructors
RowDragSelectedEventArgs()
Declaration
public RowDragSelectedEventArgs()
Properties
CellEndIndex
Gets the index of the cell where the drag selection ended.
Declaration
public int CellEndIndex { get; }
Property Value
Type |
---|
System.Int32 |
CellStartIndex
Gets the index of the cell where the drag selection started.
Declaration
public int CellStartIndex { get; }
Property Value
Type |
---|
System.Int32 |
RowEndIndex
Gets the index of the row where the drag selection ended.
Declaration
public int RowEndIndex { get; }
Property Value
Type |
---|
System.Int32 |
RowStartIndex
Gets the index of the row where the drag selection started.
Declaration
public int RowStartIndex { get; }
Property Value
Type |
---|
System.Int32 |
TargetGridID
Provides the ID of the target Grid if the drop target is a Grid; otherwise, returns null
.
Declaration
public string TargetGridID { get; }
Property Value
Type | Description |
---|---|
System.String | The target Grid ID if applicable; otherwise, |