Workbook SaveToFile Method |
| Name | Description | |
|---|---|---|
|
|
SaveToFile(String) |
Saves changes to the workbook in a different file
|
|
|
SaveToFile(String, ExcelVersion) |
Saves changes to the workbook in a different file
|
|
|
SaveToFile(String, FileFormat) |
Saves changes to the workbook in a different file
|
|
|
SaveToFile(String, TextSaveOptions) |
Saves changes to the workbook in a different file
|
|
|
SaveToFile(String, String) |
Saves changes to the workbook in a different file.
The following code illustrates how to save the active worksheet in a different file with separator:
<para>//Create workbook</para><para>Workbook workbook = new Workbook();</para><para>workbook.LoadFromFile("Sample.xlsx");</para><para>//Save to file</para><para>workbook.SaveToFile("Result.csv" , ",");</para>
|
|
|
SaveToFile(String, FileFormat, Boolean) |
Saves changes to the workbook in a different file
|
|
|
SaveToFile(String, String, Boolean) |
Saves changes to the workbook in a different file.
The following code illustrates how to save the active worksheet in a different file with separator:
<para>//Create workbook</para><para>Workbook workbook = new Workbook();</para><para>workbook.LoadFromFile("Sample.xlsx");</para><para>//Save to file</para><para>workbook.SaveToFile("Result.csv" , ",", true);</para>
|