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

BandedGridView Class

Displays data in a tabular form and allows grouping of columns into bands.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v17.2.dll

Declaration

public class BandedGridView :
    GridView

The following members accept/return BandedGridView objects:

Remarks

The BandedGridView class provides the same data representation facilities as its ancestor GridView class. Additionally, Banded Grid Views allows you to arrange columns into bands. Visually, bands are represented by their headers which are displayed over headers of columns belonging to the band. Bands do not only provide visual information structuring. End-users can drag band headers to rearrange bands or to hide them, thus performing operations on a group of columns at once.

Bands can be arranged into a tree. The root band collection can be customized using the View’s BandedGridView.Bands property. Each band holds its child band collection in the GridBand.Children property. Columns should be added to a band’s GridBand.Columns collection to be displayed within that band. Please refer to the Banded Grid Views topic for additional information.

The image below shows a sample Banded Grid View.

BandedGridView - Overview

The following code snippets (auto-collected from DevExpress Examples) contain references to the BandedGridView class.

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