Skip to main content
A newer version of this page is available. .

TreeListColumn.Fixed Property

Gets or sets whether the column is anchored to a Tree List’s edge.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

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

Property Value

Type Default Description
DevExpress.XtraTreeList.Columns.FixedStyle **None**

A DevExpress.XtraTreeList.Columns.FixedStyle enumeration value.

Remarks

If the TreeListOptionsView.AutoWidth option is set to false and the total column width exceeds the Tree List’s width, you can scroll the content horizontally. If you need particular columns to be displayed on screen no matter whether scrolling has been performed or not, set those columns’ Fixed property either to FixedStyle.Left or to FixedStyle.Right.

You can anchor an unlimited number of columns to any edge.

For additional information about fixed columns, see Fixed Columns.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Fixed property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also