PowerTools SPREAD for ASP.NET 8.0J
OpenExcel(Stream,String) メソッド

Excel Compound Storageファイルを含むストリーム
パスワード
Excelストリームを開いてSpreadコンポーネントにロードします。
構文
'Declaration
 
Public Overloads Function OpenExcel( _
   ByVal stream As Stream, _
   ByVal password As String _
) As Boolean
public bool OpenExcel( 
   Stream stream,
   string password
)

パラメータ

stream
Excel Compound Storageファイルを含むストリーム
password
パスワード
この例では、ファイルストリームからExcelファイルを開きます。
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")
参照

FpSpread クラス
FpSpread メンバ
オーバーロード一覧

 

 


© 2003-2015, GrapeCity inc. All rights reserved.