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

FixedStyle Enum

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

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v24.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