Skip to main content

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.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

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 Compact Mode is enabled and activated.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the HeaderPosition property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also