ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rendering Assembly / GrapeCity.ActiveReports.Core.Rendering.Data Namespace / SubreportsInfo Class / Map Property

In This Topic
    Map Property
    In This Topic
    Gets an array of dictionaries that map subreport names to their indices.
    Syntax
    'Declaration
     
    Public ReadOnly Property Map As Dictionary(Of String,Integer)()
    public Dictionary<string,int>[] Map {get;}

    Property Value

    An array of Dictionary where the key is a System.String representing the subreport name, and the value is an System.Int32 representing the report index.
    Remarks
    Index represents the report index: 0 for the main report; 1, 2, etc. for subreports from Definitions starting from 1. Value is a dictionary to resolve report subreports. Key is the subreport name in the definition, Value is the report index.
    See Also