windowsforms-devexpress-dot-xtratreelist-dot-columns-dot-treelistcolumn-9232a0f4.md
Gets or sets whether the column is anchored to the control’s left or right edge.
Namespace : DevExpress.XtraTreeList.Columns
Assembly : DevExpress.XtraTreeList.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList
[DefaultValue(FixedStyle.None)]
[XtraSerializableProperty]
public virtual FixedStyle Fixed { get; set; }
<DefaultValue(FixedStyle.None)>
<XtraSerializableProperty>
Public Overridable Property Fixed As FixedStyle
| Type | Default | Description |
|---|---|---|
| FixedStyle | None |
A value that specifies whether the column is anchored to the control’s left or right edge.
|
Available values:
| Name | Description |
|---|---|
| None |
The column is not anchored.
| | Left |
The column is anchored at the control’s left edge.
| | Right |
The column is anchored at the control’s right edge.
|
If the TreeListOptionsView.AutoWidth option is disabled and the total column width exceeds the control’s width, users can scroll the content horizontally. If you need a particular column to always be displayed on screen, set the Fixed property to Left or to Right.
You can anchor any number of columns to any edge. See the following topic for more information: Columns.
See Also