GroupFieldCollection.Item[String] Property
In This Article
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 |
---|---|---|
field |
String | A string containing a field name in the primary data source. |
#Property Value
Type | Description |
---|---|
Group |
A Group |
#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