Class GridRowDragStartEventArgs
Represents the data associated with the initiation of a row drag operation.
Inheritance
System.Object
GridRowDragStartEventArgs
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class GridRowDragStartEventArgs : EventArgs
Constructors
GridRowDragStartEventArgs(IReadOnlyList<Object>)
Initializes a new instance of the GridRowDragStartEventArgs class.
Declaration
public GridRowDragStartEventArgs(IReadOnlyList<object> draggingRecords)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IReadOnlyList<System.Object> | draggingRecords | The collection of records involved in the drag operation. |
Properties
DraggingRecords
Gets the collection of records that are currently being dragged.
Declaration
public IReadOnlyList<object> DraggingRecords { get; }
Property Value
| Type |
|---|
| System.Collections.Generic.IReadOnlyList<System.Object> |
Handled
Gets or sets a value indicating whether the event has been handled. Set this property to true to cancel or override the default drag start behavior.
Declaration
public bool Handled { get; set; }
Property Value
| Type |
|---|
| System.Boolean |