ComponentOne Excel for .NET
C1.Excel Assembly / C1.Excel Namespace / C1XLBook Class / LoadBiffAsync Method / LoadBiffAsync(Stream,Boolean) Method
System.IO.Stream that contains the worksheet.
True to load data into the sheets (by default); False to read the sheet names only.

In This Topic
    LoadBiffAsync(Stream,Boolean) Method
    In This Topic
    Loads async the worksheet from a BIFF8 stream.
    Syntax
    'Declaration
     
    Public Overloads Function LoadBiffAsync( _
       ByVal stream As System.IO.Stream, _
       Optional ByVal fillSheets As System.Boolean _
    ) As System.Threading.Tasks.Task
    public System.Threading.Tasks.Task LoadBiffAsync( 
       System.IO.Stream stream,
       System.bool fillSheets
    )

    Parameters

    stream
    System.IO.Stream that contains the worksheet.
    fillSheets
    True to load data into the sheets (by default); False to read the sheet names only.

    Return Value

    The task of represents an asynchronous operation.
    See Also