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

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.v19.1.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.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