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

GroupItemFluentBuilder.WithTitleVisible(Boolean) Method

Specifies whether a group title is visible.

Namespace: DevExpress.XtraReports.Parameters

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

NuGet Packages: DevExpress.Printing.Core, DevExpress.Win.Dashboard.Design

Declaration

public GroupItemFluentBuilder WithTitleVisible(
    bool titleVisible
)

Parameters

Name Type Description
titleVisible Boolean

true, to make the title visible; otherwise, false.

Returns

Type Description
GroupItemFluentBuilder

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

Example

using DevExpress.XtraReports.Parameters;
// ...
ParameterPanelFluentBuilder.Begin(report)
    .AddGroupItem(g => g
        .AddParameterItem(report.Parameters[0])
        .AddParameterItem(report.Parameters[1])
        .WithTitleVisible(false))
.End();
titleVisible = true (Default) titleVisible = false
titleVisible = true (Default) titleVisible = false
See Also