[]
Opens the file.
void Open(string fileName)
Sub Open(fileName As String)
Type | Name | Description |
---|---|---|
string | fileName | The specified file. |
Opens the JSON file.
IList<JsonError> Open(string fileName, DeserializationOptions deserializationOptions)
Function Open(fileName As String, deserializationOptions As DeserializationOptions) As IList(Of JsonError)
Type | Name | Description |
---|---|---|
string | fileName | The specified JSON file. |
DeserializationOptions | deserializationOptions | The JSON deserialization options. |
Opens the specified excel file.
void Open(string fileName, string password = null, OpenOptions openOptions = null)
Sub Open(fileName As String, Optional password As String = Nothing, Optional openOptions As OpenOptions = Nothing)
Type | Name | Description |
---|---|---|
string | fileName | The excel file. |
string | password | The password of the file. |
OpenOptions | openOptions | Options for opening. |
This method is now obsolete.
Opens the file stream.
void Open(Stream fileStream)
Sub Open(fileStream As Stream)
Type | Name | Description |
---|---|---|
Stream | fileStream | The specified file stream. |
Opens the specified excel file stream.
void Open(Stream fileStream, string password = null, OpenOptions openOptions = null)
Sub Open(fileStream As Stream, Optional password As String = Nothing, Optional openOptions As OpenOptions = Nothing)
Type | Name | Description |
---|---|---|
Stream | fileStream | The file stream. |
string | password | The password of the file. |
OpenOptions | openOptions | Options for opening. |
This method is now obsolete.
Opens the specified format file.
void Open(string fileName, OpenFileFormat fileFormat)
Sub Open(fileName As String, fileFormat As OpenFileFormat)
Type | Name | Description |
---|---|---|
string | fileName | The specified file. |
OpenFileFormat | fileFormat | The format of the file. |
Opens the specified format file stream.
void Open(Stream fileStream, OpenFileFormat fileFormat)
Sub Open(fileStream As Stream, fileFormat As OpenFileFormat)
Type | Name | Description |
---|---|---|
Stream | fileStream | The specified file stream. |
OpenFileFormat | fileFormat | The format of the file stream. |
Opens the file with specified options.
void Open(string fileName, OpenOptionsBase options)
Sub Open(fileName As String, options As OpenOptionsBase)
Type | Name | Description |
---|---|---|
string | fileName | The excel file. |
OpenOptionsBase | options | The options of opening the file. Possible types: |
Opens the stream with specified options.
void Open(Stream fileStream, OpenOptionsBase options)
Sub Open(fileStream As Stream, options As OpenOptionsBase)
Type | Name | Description |
---|---|---|
Stream | fileStream | The file stream. |
OpenOptionsBase | options | The format of opening the file stream. Possible types: |