Class DataGridQueryRowDraggingEventArgs
Provides the details for the QueryRowDragging event/>.
Inheritance
System.Object
DataGridQueryRowDraggingEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridQueryRowDraggingEventArgs : CancelEventArgs
Constructors
DataGridQueryRowDraggingEventArgs()
Declaration
public DataGridQueryRowDraggingEventArgs()
Properties
CanAutoScroll
Gets or sets a value indicating whether auto-scrolling should happen when row drag view reaches the top or bottom of the SfDataGrid.
Declaration
public bool CanAutoScroll { get; set; }
Property Value
Type |
---|
System.Boolean |
CurrentRowData
Gets the underlying data of the current row over which the drag view is placed.
Declaration
public object CurrentRowData { get; }
Property Value
Type |
---|
System.Object |
DraggingAction
Gets the current status (drag started or dragging or drag ended) when performing row drag-and-drop operation.
Declaration
public DataGridDragAction DraggingAction { get; }
Property Value
Type |
---|
DataGridDragAction |
From
Gets the index of the row that is being dragged.
Declaration
public int From { get; }
Property Value
Type |
---|
System.Int32 |
Position
Gets the current position of the drag and drop view in a SfDataGrid.
Declaration
public Point Position { get; }
Property Value
Type |
---|
Microsoft.Maui.Graphics.Point |
RowData
Gets the underlying data of the row being dragged.
Declaration
public object RowData { get; }
Property Value
Type |
---|
System.Object |
To
Gets the index of the row that the drag view is currently placed over or dropped.
Declaration
public int To { get; }
Property Value
Type |
---|
System.Int32 |