Class RowDragSelectionEventArgs<T>
Provides information about the RowDragSelectionStarting event, which occurs when drag based selection of rows or cells is initiated in the Grid.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowDragSelectionEventArgs<T> : GridEventBaseArgs
Type Parameters
| Name | Description |
|---|---|
| T | The type of the data bound to the Data Grid. |
Constructors
RowDragSelectionEventArgs()
Declaration
public RowDragSelectionEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the drag selection operation.
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | The default value is |
Remarks
If the Cancel property is set to true, the drag selection action will be canceled.
CellStartIndex
Gets the index of the cell where the drag selection begins.
Declaration
public int CellStartIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |
RowStartIndex
Gets the index of the row where the drag selection begins.
Declaration
public int RowStartIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |