Spread Windows Forms 12.0 Product Documentation
SaveExcel(Stream,ExcelSaveFlags,ExcelWarningList,String) Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class > SaveExcel Method : SaveExcel(Stream,ExcelSaveFlags,ExcelWarningList,String) Method
Stream
Save flag
List of Excel warnings
Password of file
Saves the content of the Spread component to the specified stream with headers and a list of warnings.
Syntax
'Declaration
 
Public Overloads Function SaveExcel( _
   ByVal stream As Stream, _
   ByVal saveFlags As ExcelSaveFlags, _
   ByVal warningList As ExcelWarningList, _
   ByVal password As String _
) As Boolean
'Usage
 
Dim instance As FpSpread
Dim stream As Stream
Dim saveFlags As ExcelSaveFlags
Dim warningList As ExcelWarningList
Dim password As String
Dim value As Boolean
 
value = instance.SaveExcel(stream, saveFlags, warningList, password)
public bool SaveExcel( 
   Stream stream,
   ExcelSaveFlags saveFlags,
   ExcelWarningList warningList,
   string password
)

Parameters

stream
Stream
saveFlags
Save flag
warningList
List of Excel warnings
password
Password of file
Exceptions
ExceptionDescription
No stream specified or specified stream is null
Example
This example saves a stream to an Excel file.
string f;
f = "D:\\SpreadWin.xls";
System.IO.FileStream s = new System.IO.FileStream(f, System.IO.FileMode.Create, System.IO.FileAccess.ReadWrite);
FarPoint.Excel.ExcelWarningList w = new FarPoint.Excel.ExcelWarningList();
fpSpread1.SaveExcel(s, FarPoint.Excel.ExcelSaveFlags.NoFlagsSet, w, "test");
s.Close();
Dim f As String 
f = "D:\SpreadWin.xls"
Dim s As New System.IO.FileStream(f, IO.FileMode.Create,IO.FileAccess.ReadWrite)
Dim w As New FarPoint.Excel.ExcelWarningList 
FpSpread1.SaveExcel(s, FarPoint.Excel.ExcelSaveFlags.NoFlagsSet, w, "test")
s.Close()
See Also

Reference

FpSpread Class
FpSpread Members
Overload List