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


Stream that contains an Excel Compound Storage file
The password
Opens an Excel stream and loads it into the Spread component.
Syntax
'Declaration
 
Public Overloads Function OpenExcel( _
   ByVal stream As Stream, _
   ByVal password As String _
) As Boolean
'Usage
 
Dim instance As FpSpread
Dim stream As Stream
Dim password As String
Dim value As Boolean
 
value = instance.OpenExcel(stream, password)
public bool OpenExcel( 
   Stream stream,
   string password
)

Parameters

stream
Stream that contains an Excel Compound Storage file
password
The password
Example
This example opens an Excel file from a file stream.
string f;
f = "D:\\formula1.xls";
System.IO.FileStream s = new System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite);
FpSpread1.OpenExcel(s, "test");
Dim f As String
f = "D:\formula1.xls"
Dim s As New System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite)
FpSpread1.OpenExcel(s, "test")
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

 

 


Copyright © GrapeCity, inc. All rights reserved.