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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class > OpenExcel Method : OpenExcel(String,ExcelOpenFlags) Method
Path and name of file
Open flag
Opens an Excel-compatible file and loads it into Spread.
Syntax
'Declaration
 
Public Overloads Function OpenExcel( _
   ByVal fileName As String, _
   ByVal openFlags As ExcelOpenFlags _
) As Boolean
'Usage
 
Dim instance As FpSpread
Dim fileName As String
Dim openFlags As ExcelOpenFlags
Dim value As Boolean
 
value = instance.OpenExcel(fileName, openFlags)
public bool OpenExcel( 
   string fileName,
   ExcelOpenFlags openFlags
)

Parameters

fileName
Path and name of file
openFlags
Open flag
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 opens an Excel file from a string.
string f;  
f = "D:\\formula1.xls";  
fpSpread1.OpenExcel(f, FarPoint.Excel.ExcelOpenFlags.DataOnly);

Dim f As String 
f = "D:\mptest.xls"
FpSpread1.OpenExcel(f, FarPoint.Excel.ExcelOpenFlags.DataOnly)
See Also

Reference

FpSpread Class
FpSpread Members
Overload List