[]
Loads async the worksheet from a BIFF8 (*.xls) file.
public Task LoadBiffAsync(string fileName, bool fillSheets = true)
Type | Name | Description |
---|---|---|
string | fileName | Name of the file to save. |
bool | fillSheets | True to load data into the sheets (by default); False to read the sheet names only. |
Type | Description |
---|---|
Task | The task of represents an asynchronous operation. |
Loads async the worksheet from a BIFF8 stream.
public Task LoadBiffAsync(Stream stream, bool fillSheets = true)
Type | Name | Description |
---|---|---|
Stream | stream | Stream that contains the worksheet. |
bool | fillSheets | True to load data into the sheets (by default); False to read the sheet names only. |
Type | Description |
---|---|
Task | The task of represents an asynchronous operation. |