Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeListColumn.Fixed Property

Gets or sets whether the column is anchored to the control’s left or right edge.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#Declaration

[DefaultValue(FixedStyle.None)]
[XtraSerializableProperty]
public virtual FixedStyle Fixed { get; set; }

#Property Value

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.

#Remarks

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