GroupItemFluentBuilder.GetGroupItem(String, Action<GroupItemFluentBuilder>) Method
In This Article
Returns a builder for a group that contains a parameter with the specified name. 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(
string parameterName,
Action<GroupItemFluentBuilder> configuration
)
#Parameters
Name | Type | Description |
---|---|---|
parameter |
String | A parameter name. |
configuration | Action<Group |
A customization action. |
#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("customer", g => g
.WithTitleVisible(false))
.End();
Initial panel | Modified panel |
---|---|
![]() |
![]() |
See Also