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