ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / SeriesGroupingCollection Class / AddRange Method
A collection of the SeriesGrouping objects to add.
Example

In This Topic
    AddRange Method (SeriesGroupingCollection)
    In This Topic
    Adds a collection of SeriesGrouping objects to the existing SeriesGroupingCollection.
    Syntax
    'Declaration
     
    Public Sub AddRange( _
       ByVal collection As IEnumerable(Of SeriesGrouping) _
    ) 
    public void AddRange( 
       IEnumerable<SeriesGrouping> collection
    )

    Parameters

    collection
    A collection of the SeriesGrouping objects to add.
    Example
    SeriesGroupingCollection collection1 = new SeriesGroupingCollection();
    SeriesGroupingCollection collection2 = new SeriesGroupingCollection();
    collection2.Add(new SeriesGrouping());
    collection1.AddRange(collection2);
    See Also