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


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

Parameters

fileName
Path and name of file
saveFlags
Save flag

Return Value

Boolean: true if successful; false otherwise
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 an Excel file to a string.
string f;  
f = "D:\\formula1.xls";  
fpSpread1.SaveExcel(f, FarPoint.Excel.ExcelSaveFlags.NoFlagsSet);

Dim f As String 
f = "D:\mptest.xls"
FpSpread1.SaveExcel(f, FarPoint.Excel.ExcelSaveFlags.NoFlagsSet)
See Also

Reference

FpSpread Class
FpSpread Members
Overload List