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

DataViewBase.HeaderPosition Property

Gets or sets the grid view’s header position. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.2.Core.dll

Declaration

public HeaderPosition HeaderPosition { get; set; }

Property Value

Type Description
HeaderPosition

One of the HeaderPosition enumeration values.

Available values:

Name Description
Top

The header is displayed at the top of the GridControl.

WPF_Grid_Header_Top

CompactPanel

The header is displayed to the left of the compact panel.

WPF_Grid_Header_Compact

SearchPanel

The header is displayed to the left of the search panel. If the search panel is hidden, the header is not displayed.

WPF_Grid_Header_Search

Remarks

Use the HeaderPosition property to specify the view’s header position.

When the HeaderPosition property is set to HeaderPosition.SearchPanel, the header is displayed only when the search panel is visible. Set the DataViewBase.ShowSearchPanelMode property to ShowSearchPanelMode.Always to make the search panel always visible.

When the HeaderPosition property is set to HeaderPosition.CompactPanel, the header is visible only when the Compact Mode is enabled and activated.

See Also