DataGridColumn.CanUserResize Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the user can adjust the column width by using the mouse.
public:
property bool CanUserResize { bool get(); void set(bool value); };
public bool CanUserResize { get; set; }
member this.CanUserResize : bool with get, set
Public Property CanUserResize As Boolean
Property Value
true
if the user can resize the column; otherwise, false
. The registered default is true
. For information about what can influence the value, see DependencyProperty.
Remarks
This property does not affect whether column widths can be changed programmatically, such as by changing the Width property.
You can set this resize behavior for all columns by setting the DataGrid.CanUserResizeColumns property. If the DataGridColumn.CanUserResize property and the DataGrid.CanUserResizeColumns property are both set, a value of false
takes precedence over a value of true
.