ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rendering Assembly / GrapeCity.ActiveReports.Extensibility.Layout Namespace / ILayoutManager Interface / Initialize Method
GrapeCity.ActiveReports.Extensibility.Rendering.Components.IReportItem that will be laid out
ITargetDevice for which layout operation should be performed

In This Topic
    Initialize Method (ILayoutManager)
    In This Topic
    Allows initialization of the layout manager with specifies ITargetDevice.
    Syntax
    'Declaration
     
    Sub Initialize( _
       ByVal forReportItem As IReportItem, _
       ByVal targetDevice As ITargetDevice _
    ) 
    void Initialize( 
       IReportItem forReportItem,
       ITargetDevice targetDevice
    )

    Parameters

    forReportItem
    GrapeCity.ActiveReports.Extensibility.Rendering.Components.IReportItem that will be laid out
    targetDevice
    ITargetDevice for which layout operation should be performed
    Remarks
    Layout subsystem will call this method before fist call to Measure/Layout.
    See Also