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

BandCollection.Item[String] Property

Provides access to individual items in the collection by their names.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public Band this[string name] { get; }

#Parameters

Name Type Description
name String

A String value specifying the name of the band to get.

#Property Value

Type Description
Band

A Band class descendant which represents the band with the specified name.

#Remarks

This property searches the collection for the band whose name matches the parameter’s value, and returns this band. If no such object is found, the indexer returns null (Nothing in Visual Basic).

See Also