GroupItemFluentBuilder.GetGroupItem(Int32, Action<GroupItemFluentBuilder>) Method
In This Article
Returns a group builder by index. Applies a customization action to the group.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public GroupItemFluentBuilder GetGroupItem(
int index,
Action<GroupItemFluentBuilder> configuration
)
#Parameters
Name | Type | Description |
---|---|---|
index | Int32 | A group index. |
configuration | Action<Group |
A customization action. |
#Returns
Type | Description |
---|---|
Group |
A group builder, so you can chain additional methods that customize the group. |
#Example
using DevExpress.XtraReports.Parameters;
// ...
ParameterPanelFluentBuilder.Begin(report)
.GetGroupItem(0, g => g
.WithTitleVisible(false))
.End();
Initial panel | Modified panel |
---|---|
![]() |
![]() |
See Also