Skip to main content
A newer version of this page is available. .
All docs
V21.2

SeparatorItemFluentBuilder.EndSeparatorItem() Method

Ends separator customization.

Namespace: DevExpress.XtraReports.Parameters

Assembly: DevExpress.Printing.v21.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public GroupItemFluentBuilder EndSeparatorItem()

Returns

Type Description
GroupItemFluentBuilder

A group builder, so you can chain additional methods that customize the panel.

Example

using DevExpress.XtraReports.Parameters;
// ...
ParameterPanelFluentBuilder.Begin(report)
    .BeginParameterItem(report.Parameters[0]).EndParameterItem()
    .BeginSeparatorItem().EndSeparatorItem()
    .BeginParameterItem(report.Parameters[1]).EndParameterItem()
.End();
Default panel Panel with a separator between parameters
Default panel Panel with a separator between parameters
See Also