GroupItemFluentBuilder.BeginParameterItem(String, Orientation) Method
Adds a parameter editor to the UI and begins editor customization. Accepts a report parameter name.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
public ParameterItemFluentBuilder BeginParameterItem(
string parameterName,
Orientation labelOrientation = Orientation.Horizontal
)
Parameters
Name | Type | Description |
---|---|---|
parameterName | String | A parameter name. |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
labelOrientation | Orientation | Horizontal | Specifies label location relative to the editor. |
Returns
Type | Description |
---|---|
ParameterItemFluentBuilder | 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