GroupItemFluentBuilder.GetParameterItem(String, Action<ParameterItemFluentBuilder>) Method
In This Article
Applies a customization action to the parameter with the specified name.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public GroupItemFluentBuilder GetParameterItem(
string parameterName,
Action<ParameterItemFluentBuilder> configuration
)
#Parameters
Name | Type | Description |
---|---|---|
parameter |
String | A parameter name. |
configuration | Action<Parameter |
A customization action. |
#Returns
Type | Description |
---|---|
Group |
A builder, so you chain additional methods that customize the panel. |
#Example
using DevExpress.XtraReports.Parameters;
// ...
using Orientation = DevExpress.XtraReports.Parameters.Orientation;
// ...
ParameterPanelFluentBuilder.Begin(report)
.GetParameterItem("customer", p => p
.WithLabelOrientation(Orientation.Horizontal))
.End();
Initial panel | Modified panel |
---|---|
![]() |
![]() |
See Also