Class QueryColumnDraggingEventArgs
Provides data for QueryColumnDraggingEventArgs event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.DataGrid
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class QueryColumnDraggingEventArgs : GridCancelEventArgs
Constructors
QueryColumnDraggingEventArgs(SfDataGrid)
Initializes a new instance of QueryColumnDraggingEventArgs event.
Declaration
public QueryColumnDraggingEventArgs(SfDataGrid dataGrid)
Parameters
Type | Name | Description |
---|---|---|
SfDataGrid | dataGrid | The source of the event. |
Properties
From
Gets the index of the column that is being dragged.
Declaration
public int From { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An index of the column being dragged. |
PopupPosition
Declaration
public Point PopupPosition { get; }
Property Value
Type |
---|
Windows.Foundation.Point |
Reason
Gets the reason for column drag-and-drop operation.
Declaration
public QueryColumnDraggingReason Reason { get; }
Property Value
Type | Description |
---|---|
QueryColumnDraggingReason | Returns the QueryColumnDraggingReason that specifies the reason for column dragging operation. |
To
Gets the index of the column that is being dropped.
Declaration
public int To { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An index of the column being dropped. |