[]
Opens an Excel Compound Document File and loads it into Spread.
public bool OpenExcel(Stream stream, ExcelOpenFlags openFlags)
Public Function OpenExcel(stream As Stream, openFlags As ExcelOpenFlags) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream |
ExcelOpenFlags | openFlags | Open flag |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
ArgumentNullException | No stream specified or specified stream is null |
ArgumentException | No stream specified or specified stream is empty |
Opens an Excel Compound Document File and loads it into Spread.
public bool OpenExcel(Stream stream, ExcelOpenFlags openFlags, string password)
Public Function OpenExcel(stream As Stream, openFlags As ExcelOpenFlags, password As String) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream |
ExcelOpenFlags | openFlags | Open flag |
string | password | File password |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
ArgumentNullException | No stream specified or specified stream is null |
ArgumentException | No stream specified or specified stream is empty |
Opens an Excel Compound Document File and loads it into Spread with a list of warnings.
public bool OpenExcel(Stream stream, ExcelOpenFlags openFlags, ExcelWarningList warningList)
Public Function OpenExcel(stream As Stream, openFlags As ExcelOpenFlags, warningList As ExcelWarningList) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream |
ExcelOpenFlags | openFlags | Open flag |
ExcelWarningList | warningList | List of Excel warnings |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
ArgumentNullException | No stream specified or specified stream is null |
ArgumentException | No stream specified or specified stream is empty |
Opens an Excel Compound Document File and loads it into Spread with a list of warnings.
public bool OpenExcel(Stream stream, ExcelOpenFlags openFlags, ExcelWarningList warningList, string password)
Public Function OpenExcel(stream As Stream, openFlags As ExcelOpenFlags, warningList As ExcelWarningList, password As String) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream |
ExcelOpenFlags | openFlags | Open flag |
ExcelWarningList | warningList | List of Excel warnings |
string | password | File password |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
ArgumentNullException | No stream specified or specified stream is null |
ArgumentException | No stream specified or specified stream is empty |
Opens an Excel Compound Document File and loads it into Spread with a list of warnings.
public bool OpenExcel(Stream stream, ExcelOpenFlags openFlags, ExcelWarningList warningList, string password, bool isClearInputMapKey)
Public Function OpenExcel(stream As Stream, openFlags As ExcelOpenFlags, warningList As ExcelWarningList, password As String, isClearInputMapKey As Boolean) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream |
ExcelOpenFlags | openFlags | Open flag |
ExcelWarningList | warningList | List of Excel warnings |
string | password | File password |
bool | isClearInputMapKey | Clear current input map key |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
ArgumentNullException | No stream specified or specified stream is null |
ArgumentException | No stream specified or specified stream is empty |
Opens an Excel Compound Document File and loads it into Spread.
public bool OpenExcel(Stream stream)
Public Function OpenExcel(stream As Stream) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream that contains an Excel Compound Document File |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
ArgumentNullException | No stream specified or specified stream is null |
ArgumentException | No stream specified or specified stream is empty |
Opens an Excel Compound Document File and loads it into Spread.
public bool OpenExcel(Stream stream, bool isClearInputMapKey)
Public Function OpenExcel(stream As Stream, isClearInputMapKey As Boolean) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream that contains an Excel Compound Document File |
bool | isClearInputMapKey | Clear current input map key of Spread. |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
ArgumentNullException | No stream specified or specified stream is null |
ArgumentException | No stream specified or specified stream is empty |
Opens an Excel Compound Document File and loads it into Spread.
public bool OpenExcel(Stream stream, string password)
Public Function OpenExcel(stream As Stream, password As String) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream that contains an Excel Compound Document File |
string | password | File password |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
ArgumentNullException | No stream specified or specified stream is null |
ArgumentException | No stream specified or specified stream is empty |
Opens an Excel Compound Document File and loads it into Spread with a list of warnings.
public bool OpenExcel(Stream stream, ExcelWarningList warningList)
Public Function OpenExcel(stream As Stream, warningList As ExcelWarningList) As Boolean
Type | Name | Description |
---|---|---|
Stream | stream | Stream |
ExcelWarningList | warningList | List of Excel warnings |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
ArgumentNullException | No stream specified or specified stream is null |
ArgumentException | No stream specified or specified stream is empty |
Opens an Excel-compatible file and loads it into Spread.
public bool OpenExcel(string fileName, ExcelOpenFlags openFlags)
Public Function OpenExcel(fileName As String, openFlags As ExcelOpenFlags) As Boolean
Type | Name | Description |
---|---|---|
string | fileName | Path and name of file |
ExcelOpenFlags | openFlags | Open flag |
Type | Description |
---|---|
bool | True if successful; false otherwise |
Type | Condition |
---|---|
FileNotFoundException | Specified file is not found |
ArgumentNullException | No file name is specified (or specified file name is null) |
ArgumentException | No file name is specified (or specified file name is empty) |
Opens an Excel-compatible file and loads it into Spread.
public bool OpenExcel(string fileName, ExcelOpenFlags openFlags, string password)
Public Function OpenExcel(fileName As String, openFlags As ExcelOpenFlags, password As String) As Boolean
Type | Name | Description |
---|---|---|
string | fileName | Path and name of file |
ExcelOpenFlags | openFlags | Open flag |
string | password | Password of file |
Type | Description |
---|---|
bool | True if successful; false otherwise |
Type | Condition |
---|---|
FileNotFoundException | Specified file is not found |
ArgumentNullException | No file name is specified (or specified file name is null) |
ArgumentException | No file name is specified (or specified file name is empty) |
Opens an Excel-compatible file and loads it into Spread with a list of warnings.
public bool OpenExcel(string fileName, ExcelOpenFlags openFlags, ExcelWarningList warningList)
Public Function OpenExcel(fileName As String, openFlags As ExcelOpenFlags, warningList As ExcelWarningList) As Boolean
Type | Name | Description |
---|---|---|
string | fileName | Path and name of file |
ExcelOpenFlags | openFlags | Open flag |
ExcelWarningList | warningList | List of Excel warnings |
Type | Description |
---|---|
bool | True if successful; false otherwise |
Type | Condition |
---|---|
FileNotFoundException | Specified file is not found |
ArgumentNullException | No file name is specified (or specified file name is null) |
ArgumentException | No file name is specified (or specified file name is empty) |
Opens an Excel-compatible file and loads it into Spread with a list of warnings.
public bool OpenExcel(string fileName, ExcelOpenFlags openFlags, ExcelWarningList warningList, string password)
Public Function OpenExcel(fileName As String, openFlags As ExcelOpenFlags, warningList As ExcelWarningList, password As String) As Boolean
Type | Name | Description |
---|---|---|
string | fileName | Path and name of file |
ExcelOpenFlags | openFlags | Open flag |
ExcelWarningList | warningList | List of Excel warnings |
string | password | Password of file |
Type | Description |
---|---|
bool | True if successful; false otherwise |
Type | Condition |
---|---|
FileNotFoundException | Specified file is not found |
ArgumentNullException | No file name is specified (or specified file name is null) |
ArgumentException | No file name is specified (or specified file name is empty) |
Opens an Excel-compatible file and loads it into Spread with a list of warnings.
public bool OpenExcel(string fileName, ExcelOpenFlags openFlags, ExcelWarningList warningList, string password, bool isClearInputMapKey)
Public Function OpenExcel(fileName As String, openFlags As ExcelOpenFlags, warningList As ExcelWarningList, password As String, isClearInputMapKey As Boolean) As Boolean
Type | Name | Description |
---|---|---|
string | fileName | Path and name of file |
ExcelOpenFlags | openFlags | Open flag |
ExcelWarningList | warningList | List of Excel warnings |
string | password | Password of file |
bool | isClearInputMapKey | Clear current input map key of Spread. |
Type | Description |
---|---|
bool | True if successful; false otherwise |
Type | Condition |
---|---|
FileNotFoundException | Specified file is not found |
ArgumentNullException | No file name is specified (or specified file name is null) |
ArgumentException | No file name is specified (or specified file name is empty) |
Opens an Excel-compatible file and loads it into Spread.
public bool OpenExcel(string fileName)
Public Function OpenExcel(fileName As String) As Boolean
Type | Name | Description |
---|---|---|
string | fileName | Path and name of file |
Type | Description |
---|---|
bool | True if successful; false otherwise |
Type | Condition |
---|---|
FileNotFoundException | Specified file is not found |
ArgumentNullException | No file name is specified (or specified file name is null) |
ArgumentException | No file name is specified (or specified file name is empty) |
Opens an Excel-compatible file and loads it into Spread.
public bool OpenExcel(string fileName, bool isClearInputMapKey)
Public Function OpenExcel(fileName As String, isClearInputMapKey As Boolean) As Boolean
Type | Name | Description |
---|---|---|
string | fileName | Path and name of file |
bool | isClearInputMapKey | Clear current input map key of Spread. |
Type | Description |
---|---|
bool | true if successful; false otherwise |
Type | Condition |
---|---|
FileNotFoundException | Specified file is not found |
ArgumentNullException | No file name is specified (or specified file name is null) |
ArgumentException | No file name is specified (or specified file name is empty) |
Opens an Excel-compatible file and loads it into Spread.
public bool OpenExcel(string fileName, string password)
Public Function OpenExcel(fileName As String, password As String) As Boolean
Type | Name | Description |
---|---|---|
string | fileName | Path and name of file |
string | password | Password of file |
Type | Description |
---|---|
bool | True if successful; false otherwise |
Type | Condition |
---|---|
FileNotFoundException | Specified file is not found |
ArgumentNullException | No file name is specified (or specified file name is null) |
ArgumentException | No file name is specified (or specified file name is empty) |
Opens an Excel-compatible file and loads it into Spread with a list of warnings.
public bool OpenExcel(string fileName, ExcelWarningList warningList)
Public Function OpenExcel(fileName As String, warningList As ExcelWarningList) As Boolean
Type | Name | Description |
---|---|---|
string | fileName | Path and name of file |
ExcelWarningList | warningList | List of Excel warnings |
Type | Description |
---|---|
bool | True if successful; false otherwise |
Type | Condition |
---|---|
FileNotFoundException | Specified file is not found |
ArgumentNullException | No file name is specified (or specified file name is null) |
ArgumentException | No file name is specified (or specified file name is empty) |