MESCIUS SPREAD for ASP.NET 10.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 メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.