GroupItemFluentBuilder.GetGroupItem(Parameter) Method
Returns a builder for a group that contains the specified parameter.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
parameter | Parameter | A report parameter object. |
Returns
Type | Description |
---|---|
GroupItemFluentBuilder | 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