ComponentOne Excel for UWP
C1.UWP.Excel Assembly / C1.Xaml.Excel Namespace / XLSheet Class / LoadAsync Method
The file storage object that contains the worksheet.
True to finish loading from the workbook; False to load data into the other worksheets.

In This Topic
    LoadAsync Method (XLSheet)
    In This Topic
    Loads the Excel worksheet from a file storage.
    Syntax
    'Declaration
     
    Public Function LoadAsync( _
       ByVal file As Windows.Storage.StorageFile, _
       ByVal last As System.Boolean _
    ) As System.Threading.Tasks.Task
    public System.Threading.Tasks.Task LoadAsync( 
       Windows.Storage.StorageFile file,
       System.bool last
    )

    Parameters

    file
    The file storage object that contains the worksheet.
    last
    True to finish loading from the workbook; False to load data into the other worksheets.

    Return Value

    The task of represents an asynchronous operation.
    Remarks
    It was previously necessary to load the workbook from the stream without filling the worksheets.
    See Also