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

TableView.AllowFixedGroups Property

Gets or sets whether the top row for the visible group is always displayed as the user scrolls through grouped data. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v21.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public DefaultBoolean AllowFixedGroups { get; set; }

Property Value

Type Description
DefaultBoolean

A DefaultBoolean enumeration value that specifies whether to fix group rows when scrolling through grouped data.

Available values:

Name Description
True

true. DefaultBoolean.True has a constant value of 0, while the standard true value corresponds to a value of 1. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

False

false. DefaultBoolean.False has a constant value of 1, while the standard false value corresponds to a value of 0. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

Default

The default behavior determined by the control’s logic.

Remarks

This scrolling mode is perfect for viewing large amounts of grouped data. The top row of the visible group will always be displayed as you scroll through grouped data. The anchored group row(s) is shadowed to indicate that the grouped data is only partially displayed.

fixedgroups

See Also