Class ColumnDraggingEventArgs
Provides data for ColumnDragging event.
Inherited Members
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class ColumnDraggingEventArgs : GridCancelEventArgs
Constructors
ColumnDraggingEventArgs(Object)
Initializes a new instance of the ColumnDraggingEventArgs class.
Declaration
public ColumnDraggingEventArgs(object sender)
Parameters
Type | Name | Description |
---|---|---|
System.Object | sender | 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
Gets the position of popup during a column drag-and-drop operation.
Declaration
public Point PopupPosition { get; }
Property Value
Type | Description |
---|---|
System.Drawing.Point | The |
Reason
Gets the reason for column drag-and-drop operation.
Declaration
public ColumnDraggingAction Reason { get; }
Property Value
Type | Description |
---|---|
ColumnDraggingAction | Returns the |
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. |