Skip to main content

FixedStyle Enum

Contains values specifying the band or column behavior when the View is scrolled.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public enum FixedStyle

Members

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.

MiddleLeft

The band or column is not anchored until a user scrolls it up to the left edge. When the column reaches the left edge, it becomes fixed while other columns continue to scroll. This style is not supported for bands.

Related API Members

The following properties accept/return FixedStyle values:

Remarks

Values listed by this enumeration are used to set the GridBand.Fixed and GridColumn.Fixed property values. Please refer to the Columns and Banded Grid Views topics for details on using these properties.

See Also