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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class > SaveExcel Method : SaveExcel(String,String) Method
Path and name of file
Password of file
Saves the content of the Spread component to the specified Excel-compatible file.
Syntax
'Declaration
 
Public Overloads Function SaveExcel( _
   ByVal fileName As String, _
   ByVal password As String _
) As Boolean
'Usage
 
Dim instance As FpSpread
Dim fileName As String
Dim password As String
Dim value As Boolean
 
value = instance.SaveExcel(fileName, password)
public bool SaveExcel( 
   string fileName,
   string password
)

Parameters

fileName
Path and name of file
password
Password of file
Exceptions
ExceptionDescription
Specified file is not found
No file name is specified (or specified file name is null)
No file name is specified (or specified file name is empty)
Example
This example saves to an Excel-formatted file.
string f;
f = "D:\\SpreadWin.xls";
fpSpread1.SaveExcel(f, "test");
Dim f As String 
f = "D:\SpreadWin.xls"
FpSpread1.SaveExcel(f, "test")
See Also

Reference

FpSpread Class
FpSpread Members
Overload List