FlexReport for UWP | ComponentOne
C1.UWP.FlexReport Assembly / C1.Xaml.FlexReport Namespace / C1FlexReport Class / LoadAsync Method
Windows.Storage.StorageFile defining the XML report definition file.
Name of the report to retrieve from the file (case-insensitive).

In This Topic
    LoadAsync Method
    In This Topic
    Loads a report from an XML report definition file.
    Syntax
    'Declaration
     
    Public Function LoadAsync( _
       ByVal file As StorageFile, _
       ByVal reportName As String _
    ) As Task
    public Task LoadAsync( 
       StorageFile file,
       string reportName
    )

    Parameters

    file
    Windows.Storage.StorageFile defining the XML report definition file.
    reportName
    Name of the report to retrieve from the file (case-insensitive).
    Remarks
    You can get a list of reports available in the file using the GetReportListAsync method.
    See Also