ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Core.Rendering Assembly / GrapeCity.ActiveReports.Rendering.Components Namespace / RenderReportItemFactory Class / Create Method
The GrapeCity.ActiveReports.Rendering.ReportRenderingContext used for this report.
The RDL definition of the report item to construct.
The GrapeCity.ActiveReports.Extensibility.Rendering.Components.IDataScope to use as a data source for the created ReportItems.

In This Topic
    Create Method (RenderReportItemFactory)
    In This Topic
    Creates report item from the specified definition and data context.
    Syntax
    'Declaration
     
    Public Overridable Function Create( _
       ByVal reportRenderingContext As IReportRenderingContext, _
       ByVal rdlItem As ReportItem, _
       ByVal currentDataContext As IDataScopeInternal _
    ) As IReportItem
    public virtual IReportItem Create( 
       IReportRenderingContext reportRenderingContext,
       ReportItem rdlItem,
       IDataScopeInternal currentDataContext
    )

    Parameters

    reportRenderingContext
    The GrapeCity.ActiveReports.Rendering.ReportRenderingContext used for this report.
    rdlItem
    The RDL definition of the report item to construct.
    currentDataContext
    The GrapeCity.ActiveReports.Extensibility.Rendering.Components.IDataScope to use as a data source for the created ReportItems.
    Remarks
    NOTE: The returned array of items very well may have more items than the input definitions due to composition of simple report items like rectangle.
    See Also