[]
Loads the Excel worksheet from a file.
public void Load(string fileName, bool last)
Type | Name | Description |
---|---|---|
string | fileName | Name of the file that contains the worksheet. |
bool | last | True to finish loading from the workbook; False to load data into the other worksheets. |
It was previously necessary to load the workbook from the stream without filling the worksheets.
Loads the Excel worksheet from a stream.
public void Load(Stream stream, bool last)
Type | Name | Description |
---|---|---|
Stream | stream | Stream that contains the worksheet. |
bool | last | True to finish loading from the workbook; False to load data into the other worksheets. |
It was previously necessary to load the workbook from the stream without filling the worksheets.