ComponentOne Excel for .NET
C1.Excel Assembly / C1.Excel Namespace / C1XLBook Class / LoadBiffAsync Method / LoadBiffAsync(String,Boolean) Method
Name of the file to save.
True to load data into the sheets (by default); False to read the sheet names only.

In This Topic
    LoadBiffAsync(String,Boolean) Method
    In This Topic
    Loads async the worksheet from a BIFF8 (*.xls) file.
    Syntax
    'Declaration
     
    Public Overloads Function LoadBiffAsync( _
       ByVal fileName As System.String, _
       Optional ByVal fillSheets As System.Boolean _
    ) As System.Threading.Tasks.Task
    public System.Threading.Tasks.Task LoadBiffAsync( 
       System.string fileName,
       System.bool fillSheets
    )

    Parameters

    fileName
    Name of the file to save.
    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