FlexReport for WinForms | ComponentOne
C1.Win.FlexReport.4.5.2 Assembly / C1.Win.FlexReport Namespace / C1FlexReport Class / Load Method / Load(String,String,Boolean) Method
Full name of the XML report definition file.
Name of the report to retrieve from the file (case-insensitive).
OUT: Contains true if report definition was imported from old C1Report format.

In This Topic
    Load(String,String,Boolean) Method
    In This Topic
    Loads a report from an XML report definition file.
    Syntax
    'Declaration
     
    Public Overloads Sub Load( _
       ByVal fileName As String, _
       ByVal reportName As String, _
       ByRef converted As Boolean _
    ) 
    public void Load( 
       string fileName,
       string reportName,
       out bool converted
    )

    Parameters

    fileName
    Full name of the XML report definition file.
    reportName
    Name of the report to retrieve from the file (case-insensitive).
    converted
    OUT: Contains true if report definition was imported from old C1Report format.
    Remarks
    You can get a list of reports available in the file using the GetReportList(String) method.
    See Also