GroupItemFluentBuilder.GetParameterItem(Parameter) Method
Returns a parameter builder. Accepts a report 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 |
|---|---|
| ParameterItemFluentBuilder | A parameter builder, so you chain methods that customize the parameter editor. |
Example
using DevExpress.XtraReports.Parameters;
// ...
using Orientation = DevExpress.XtraReports.Parameters.Orientation;
// ...
ParameterPanelFluentBuilder.Begin(report)
.GetParameterItem(report.Parameters[0])
.WithLabelOrientation(Orientation.Horizontal)
.EndParameterItem()
.End();
| Initial panel | Modified panel |
|---|---|
![]() |
![]() |
See Also

