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

GroupFieldCollection.Item[String] Property

An indexer that returns the GroupField object with the specified field name in the collection.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public GroupField this[string fieldName] { get; }

#Parameters

Name Type Description
fieldName String

A string containing a field name in the primary data source.

#Property Value

Type Description
GroupField

A GroupField object that has the specified field name in the collection.

#Remarks

If a GroupField object with the specified field name was not found this indexer returns null (Nothing in Visual Basic).

Field names are returned by the GroupField.FieldName property.

The report’s primary data source is determined by the XtraReportBase.DataSource property.

See Also