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

Lists values that specify the column’s behavior when the grid is horizontally scrolled.

Namespace: DevExpress.Maui.DataGrid

Assembly: DevExpress.Maui.DataGrid.dll

NuGet Package: DevExpress.Maui.DataGrid

#Declaration

C#
public enum FixedStyle

#Members

Name Description
None

The column is not anchored and takes part in horizontal scrolling.

Start

The column is anchored to the grid’s left edge.

End

The column is anchored to the grid’s right edge.

#Related API Members

The following properties accept/return FixedStyle values:

#Remarks

Use the FixedStyle enumeration’s values to set the GridColumn.FixedStyle property.

See Also