Skip to main content

PivotGridGroup.AddRange(PivotGridFieldBase[]) Method

Adds an array of fields to the PivotGridGroup.Fields collection of the current group.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v23.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

public void AddRange(
    PivotGridFieldBase[] fields
)

Parameters

Name Type Description
fields PivotGridFieldBase[]

An array of PivotGridFieldBase descendants to add to the group’s field collection.

Remarks

The AddRange method adds a group of existing fields to the group’s PivotGridGroup.Fields collection. Individual fields can be added using the PivotGridGroup.Add method.

Note: a field cannot be added to a group if it already belongs to another group.

See Also