Spread for ASP.NET 9.0 Product Documentation
OpenExcel(String,ExcelWarningList) Method
Example 


Path and name of file to open
List of warning messages that occur during this operation
Opens an Excel file into the Spread component keeping track of warnings.
Syntax
'Declaration
 
Public Overloads Function OpenExcel( _
   ByVal fileName As String, _
   ByVal warningList As ExcelWarningList _
) As Boolean
'Usage
 
Dim instance As FpSpread
Dim fileName As String
Dim warningList As ExcelWarningList
Dim value As Boolean
 
value = instance.OpenExcel(fileName, warningList)
public bool OpenExcel( 
   string fileName,
   ExcelWarningList warningList
)

Parameters

fileName
Path and name of file to open
warningList
List of warning messages that occur during this operation

Return Value

Boolean: true if successful; false otherwise
Example
This example opens a Microsoft Excel file, test.xls.
ExcelWarningList w=new ExcelWarningList();
FpSpread1.OpenExcel("test.xls",w);
Dim w As FarPoint.Excel.ExcelWarningList
FpSpread1.OpenExcel("test.xls",w)
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

FpSpread Class
FpSpread Members
Overload List

User-Task Documentation

Saving to an Excel-Formatted File

External

Microsoft Excel

 

 


Copyright © GrapeCity, inc. All rights reserved.