GroupItemFluentBuilder.RemoveParameterItem(Parameter) Method
Removes a parameter editor from the UI. Accepts a parameter object.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v25.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| parameter | Parameter | A report parameter object. |
Returns
| Type | Description |
|---|---|
| GroupItemFluentBuilder | A builder, so you chain methods that customize the panel. |
Example
using DevExpress.XtraReports.Parameters;
// ...
ParameterPanelFluentBuilder.Begin(report)
.GetGroupItem(0)
.RemoveParameterItem(report.Parameters[0])
.End();
| Initial panel | Modified panel |
|---|---|
![]() |
![]() |
See Also

