GroupItemFluentBuilder.GetParameterItem(Int32) Method
In This Article
Returns a parameter builder by index.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public ParameterItemFluentBuilder GetParameterItem(
int index
)
#Parameters
Name | Type | Description |
---|---|---|
index | Int32 | A parameter index. |
#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(0)
.WithLabelOrientation(Orientation.Horizontal)
.EndParameterItem()
.End();
Initial panel | Modified panel |
---|---|
![]() |
![]() |
See Also