[]
Opens an Excel file and loads it into Spread.
public bool OpenExcel(string filename, ImportContext context)
Public Function OpenExcel(filename As String, context As ImportContext) As Boolean
Type | Name | Description |
---|---|---|
string | filename | Path and name of file to open. |
ImportContext | context | An ImportContext object indicating the settings to open. |
Type | Description |
---|---|
bool |
|
Opens an Excel file and loads it into Spread.
public bool OpenExcel(string filename, ImportOptions options = ImportOptions.Default)
Public Function OpenExcel(filename As String, Optional options As ImportOptions = ImportOptions.Default) As Boolean
Type | Name | Description |
---|---|---|
string | filename | Path and name of file to open. |
ImportOptions | options | An ImportOptions value indicating the settings to open. |
Type | Description |
---|---|
bool |
|
Opens an Excel file and loads it into Spread.
public bool OpenExcel(Stream stream, ImportOptions options = ImportOptions.Default)
Public Function OpenExcel(stream As Stream, Optional options As ImportOptions = ImportOptions.Default) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream that contains an Excel file. |
ImportOptions | options | An ImportOptions value indicating the settings to open. |
Type | Description |
---|---|
bool |
|
Opens an Excel file and loads it into Spread.
public bool OpenExcel(Stream stream, ImportContext context)
Public Function OpenExcel(stream As Stream, context As ImportContext) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream that contains an Excel file. |
ImportContext | context | An ImportContext object indicating the settings to open. |
Type | Description |
---|---|
bool |
|