GroupItemFluentBuilder.GetParameterItem(Parameter) Method
In This Article
Returns a parameter builder. Accepts a report parameter object.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public ParameterItemFluentBuilder GetParameterItem(
Parameter parameter
)
#Parameters
Name | Type | Description |
---|---|---|
parameter | Parameter | A report parameter object. |
#Returns
Type | Description |
---|---|
Parameter |
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