GroupItemFluentBuilder.RemoveParameterItem(String) Method
In This Article
Removes a parameter editor from the UI. Accepts a parameter name.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public GroupItemFluentBuilder RemoveParameterItem(
string parameterName
)
#Parameters
Name | Type | Description |
---|---|---|
parameter |
String | A parameter name. |
#Returns
Type | Description |
---|---|
Group |
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