Show / Hide Table of Contents

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 Source

DataGridColumnReorderingEventArgs(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 Source

Column

The column being moved.

Declaration
public DataGridColumn Column { get; }
Property Value
Type Description
DataGridColumn
| Improve this Doc View Source

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
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source