FlexReport for UWP | ComponentOne
C1.UWP.FlexReport Assembly / C1.Xaml.FlexReport Namespace / C1FlexReport Class / Load Method / Load(XDocument,String) Method
The System.Xml.Linq.XDocument containing the reports.
The name of the report to load (case-insensitive), can be null in this case first report will be loaded.

In This Topic
    Load(XDocument,String) Method
    In This Topic
    Loads a report from an System.Xml.Linq.XDocument.
    Syntax
    'Declaration
     
    Public Overloads Sub Load( _
       ByVal doc As XDocument, _
       ByVal reportName As String _
    ) 
    public void Load( 
       XDocument doc,
       string reportName
    )

    Parameters

    doc
    The System.Xml.Linq.XDocument containing the reports.
    reportName
    The name of the report to load (case-insensitive), can be null in this case first report will be loaded.
    Remarks
    You can get a list of reports available in a file using the GetReportList(XDocument) method.
    See Also