Class DataGridColumnReorderingEventArgs
Provides data for the ColumnReordering event.
Inheritance
System.Object
System.EventArgs
System.ComponentModel.CancelEventArgs
DataGridColumnReorderingEventArgs
Inherited Members
System.ComponentModel.CancelEventArgs.Cancel
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls
Assembly: OpenSilver.Controls.Data.dll
Syntax
public class DataGridColumnReorderingEventArgs : CancelEventArgs
Constructors
| Improve this Doc View SourceDataGridColumnReorderingEventArgs(DataGridColumn)
Initializes a new instance of the DataGridColumnReorderingEventArgs class.
Declaration
public DataGridColumnReorderingEventArgs(DataGridColumn dataGridColumn)
Parameters
Type | Name | Description |
---|---|---|
DataGridColumn | dataGridColumn |
Properties
| Improve this Doc View SourceColumn
The column being moved.
Declaration
public DataGridColumn Column { get; }
Property Value
Type | Description |
---|---|
DataGridColumn |
DragIndicator
The popup indicator displayed while dragging. If null and Handled = true, then do not display a tooltip.
Declaration
public Control DragIndicator { get; set; }
Property Value
Type | Description |
---|---|
Control |
DropLocationIndicator
UIElement to display at the insertion position. If null and Handled = true, then do not display an insertion indicator.
Declaration
public Control DropLocationIndicator { get; set; }
Property Value
Type | Description |
---|---|
Control |