Saves workbook to file or stream.
Saves the workbook to the specified output stream.
[Visual Basic] Function SaveAs(ByVal Stream) As Boolean
[C#] bool SaveAs(Stream);
[C++] bool SaveAs(Stream*);
[JScript] function SaveAs(Stream): bool;
Saves the workbook to the specified output stream.
[Visual Basic] Function SaveAs(ByVal Stream,ByVal XlFileFormat) As Boolean
[C#] bool SaveAs(Stream,XlFileFormat);
[C++] bool SaveAs(Stream*,XlFileFormat);
[JScript] function SaveAs(Stream,XlFileFormat): bool;
Saves the workbook to the specified output stream.
[Visual Basic] Function SaveAs(ByVal Stream,ByVal XlFileFormat,ByVal ExportOptions) As Boolean
[C#] bool SaveAs(Stream,XlFileFormat,ExportOptions);
[C++] bool SaveAs(Stream*,XlFileFormat,ExportOptions*);
[JScript] function SaveAs(Stream,XlFileFormat,ExportOptions): bool;
Saves changes to the workbook in a different file.
[Visual Basic] Function SaveAs(ByVal String) As Boolean
[C#] bool SaveAs(string);
[C++] bool SaveAs(String*);
[JScript] function SaveAs(String): bool;
Saves changes to the workbook in a different file.
[Visual Basic] Function SaveAs(ByVal String,ByVal XlFileFormat) As Boolean
[C#] bool SaveAs(string,XlFileFormat);
[C++] bool SaveAs(String*,XlFileFormat);
[JScript] function SaveAs(String,XlFileFormat): bool;
Saves changes to the workbook in a different file.
[Visual Basic] Function SaveAs(ByVal String,ByVal XlFileFormat,ByVal ExportOptions) As Boolean
[C#] bool SaveAs(string,XlFileFormat,ExportOptions);
[C++] bool SaveAs(String*,XlFileFormat,ExportOptions*);
[JScript] function SaveAs(String,XlFileFormat,ExportOptions): bool;
IWorkbook Interface | NativeExcel Namespace | Factory Class