[]
Saves current worksheet to file.
void Save(string fileName)
Sub Save(fileName As String)
| Type | Name | Description |
|---|---|---|
| string | fileName | The specified file name. |
Saves current worksheet to the specified format file.
void Save(string fileName, SaveFileFormat fileFormat)
Sub Save(fileName As String, fileFormat As SaveFileFormat)
| Type | Name | Description |
|---|---|---|
| string | fileName | The specified file. |
| SaveFileFormat | fileFormat | The format of the file. |
Saves current worksheet to the specified format file stream.
void Save(Stream fileStream, SaveFileFormat fileFormat)
Sub Save(fileStream As Stream, fileFormat As SaveFileFormat)
| Type | Name | Description |
|---|---|---|
| Stream | fileStream | The specified file stream. |
| SaveFileFormat | fileFormat | The format of the file stream. |
Saves current worksheet to the specified file.
void Save(string fileName, SaveOptionsBase options)
Sub Save(fileName As String, options As SaveOptionsBase)
| Type | Name | Description |
|---|---|---|
| string | fileName | The specified file. |
| SaveOptionsBase | options | The options of saving the file. |
Saves current worksheet to the specified file stream.
void Save(Stream fileStream, SaveOptionsBase options)
Sub Save(fileStream As Stream, options As SaveOptionsBase)
| Type | Name | Description |
|---|---|---|
| Stream | fileStream | The specified file stream. |
| SaveOptionsBase | options | The options of saving the file stream. |