Skip to main content
All docs
V25.1
  • GroupItemFluentBuilder.GetGroupItem(Int32) Method

    Returns a group builder by index.

    Namespace: DevExpress.XtraReports.Parameters

    Assembly: DevExpress.Printing.v25.1.Core.dll

    NuGet Package: DevExpress.Printing.Core

    Declaration

    public GroupItemFluentBuilder GetGroupItem(
        int index
    )

    Parameters

    Name Type Description
    index Int32

    A group index.

    Returns

    Type Description
    GroupItemFluentBuilder

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

    Example

    using DevExpress.XtraReports.Parameters;
    // ...
    ParameterPanelFluentBuilder.Begin(report)
        .GetGroupItem(0)
            .WithTitleVisible(false)
    .End();
    
    Initial panel Modified panel
    Initial panel Modified panel
    See Also