GroupItemFluentBuilder.BeginParameterItem(String, Orientation) Method
In This Article
Adds a parameter editor to the UI and begins editor customization. Accepts a report parameter name.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public ParameterItemFluentBuilder BeginParameterItem(
string parameterName,
Orientation labelOrientation = Orientation.Horizontal
)
#Parameters
Name | Type | Description |
---|---|---|
parameter |
String | A parameter name. |
#Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
label |
Orientation | Horizontal | Specifies label location relative to the editor. |
#Returns
Type | Description |
---|---|
Parameter |
A parameter builder, so you can chain additional methods that customize the parameter editor. |
#Example
using DevExpress.XtraReports.Parameters;
// ...
using Orientation = DevExpress.XtraReports.Parameters.Orientation;
// ...
ParameterPanelFluentBuilder.Begin(report)
.BeginParameterItem("customer", Orientation.Vertical)
.EndParameterItem()
.End();
Default panel | Panel with a customized parameter |
---|---|
![]() |
![]() |
See Also