GroupItemFluentBuilder.GetGroupItem(String) Method
In This Article
Returns a builder for a group that contains a parameter with the specified name.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public GroupItemFluentBuilder GetGroupItem(
string parameterName
)
#Parameters
Name | Type | Description |
---|---|---|
parameter |
String | A parameter name. |
#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")
.WithTitleVisible(false)
.End();
Initial panel | Modified panel |
---|---|
![]() |
![]() |
See Also