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