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

BandedGridColumn.Fixed Property

Gets or sets a value specifying whether a column is scrolled horizontally with the View or in a fixed position.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[Browsable(false)]
public override FixedStyle Fixed { get; set; }

Property Value

Type Description
FixedStyle

A FixedStyle enumeration member specifying column behavior when the View is scrolled.

Available values:

Name Description
None

The band or column takes part in horizontal scrolling.

Left

The band or column is anchored to the View’s left edge.

Right

The band or column is anchored to the View’s right edge.

Remarks

The Fixed property overrides the base class property to prevent switching a column to the fixed state. The property always returns the FixedStyle.None value. Assigning a value to this property has no effect. The reason is that Banded Grid Views do not support fixed columns. However, you may enable this feature for bands. Use the GridBand.Fixed property for this purpose.

See Also