ParameterItemFluentBuilder.EndParameterItem() Method
In This Article
Ends parameter editor customization.
Namespace: DevExpress.XtraReports.Parameters
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public GroupItemFluentBuilder EndParameterItem()
#Returns
Type | Description |
---|---|
Group |
A group builder, so you can chain additional methods that customize the group. |
#Example
using DevExpress.XtraReports.Parameters;
// ...
using Orientation = DevExpress.XtraReports.Parameters.Orientation;
// ...
ParameterPanelFluentBuilder.Begin(report)
.BeginParameterItem(report.Parameters[0], Orientation.Vertical)
.EndParameterItem()
.End();
Default panel | Panel with a customized parameter |
---|---|
![]() |
![]() |
See Also