Skip to main content

TreeListBand.Fixed Property

Gets or sets the band’s behavior when the TreeList control is scrolled horizontally.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

[DefaultValue(FixedStyle.None)]
[DXCategory("Behavior")]
[XtraSerializableProperty]
[XtraSerializablePropertyId(3)]
public virtual FixedStyle Fixed { get; set; }

Property Value

Type Default Description
FixedStyle None

A value that specifies the band’s behavior when the TreeList control is scrolled horizontally.

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

Use the Fixed property to always display the band’s content regardless of TreeList scrolling. If the Fixed property is set to Left or Right, the band is not moved when horizontal scrolling is performed.

In the Left style, the band is anchored to the left control’s edge. To anchor the band to the control’s right edge, choose the Right style. If the Fixed property is set to None, the band takes part in horizontal scrolling.

See Also