Class TreeGridColumnDraggingEventArgs
Provides data for ColumnDragging event.
Inheritance
System.Object
TreeGridColumnDraggingEventArgs
Namespace: Syncfusion.UI.Xaml.TreeGrid
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class TreeGridColumnDraggingEventArgs : CancelEventArgs
Constructors
TreeGridColumnDraggingEventArgs()
Initializes a new instance of TreeGridColumnDraggingEventArgs event.
Declaration
public TreeGridColumnDraggingEventArgs()
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
Gets the position of popup during a column drag-and-drop operation.
Declaration
public Point PopupPosition { get; }
Property Value
Type | Description |
---|---|
Windows.Foundation.Point | The Windows.Foundation.Point that represents the position of popup during the column drag-and-drop operation. |
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. |