Saves the Excel document data to a System.IO.Stream with format and special password by .
Syntax
'Declaration
Public Overloads Sub Save( _
ByVal As System.IO.Stream, _
Optional ByVal As ExcelFileType, _
Optional ByVal As System.String _
)
'Usage
Dim instance As ExcelOperator
Dim outStream As System.IO.Stream
Dim workbookType As ExcelFileType
Dim password As System.String
instance.Save(outStream, workbookType, password)
public void Save(
System.IO.Stream ,
ExcelFileType ,
System.string
)
Parameters
- outStream
- The output stream.
- workbookType
- A ExcelFileType indicate the type of saved Excel file
- password
- The password of the workbook. The default password is a null reference (Nothing in Visual Basic).
See Also