DataGridColumn.CanUserReorder Property

Definition

Gets or sets a value that indicates whether the user can change the column display position by dragging the column header.

public:
 property bool CanUserReorder { bool get(); void set(bool value); };
public bool CanUserReorder { get; set; }
member this.CanUserReorder : bool with get, set
Public Property CanUserReorder As Boolean

Property Value

true if the user can drag the column header to a new position; otherwise, false. The registered default is true. For information about what can influence the value, see DependencyProperty.

Remarks

You can set this reorder behavior for all columns by setting the DataGrid.CanUserReorderColumns property. If the DataGridColumn.CanUserReorder property and the DataGrid.CanUserReorderColumns property are both set, a value of false takes precedence over a value of true.

Applies to

See also