ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Grouping Class / DataCollectionName Property
Example

In This Topic
    DataCollectionName Property (Grouping)
    In This Topic
    Gets or sets a name to use for the data element for the collection of all instances of this group.
    Syntax
    'Declaration
     
    Public Property DataCollectionName As String
    public string DataCollectionName {get; set;}

    Property Value

    A System.String value indicating the name to use for the data element for the collection of all instances of this group.
    Remarks
    Default value is "DataElementName_Collection".
    Example
    Grouping group = new Grouping();
    group.DataCollectionName = "CategoryGroup_Collection";
    See Also