GroupItemFluentBuilder.RemoveParameterItem(String) Method
Removes a parameter editor from the UI. Accepts a parameter name.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
parameterName | String | A parameter name. |
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("customer")
.End();
Initial panel | Modified panel |
---|---|
See Also