MESCIUS SPREAD for Windows Forms 15.0J
OpenExcel(Stream,ExcelWarningList) メソッド
使用例 

ストリーム
Excel警告リスト
Excel Compound Documentファイルを開き、警告リストと共にSpreadにロードします。
構文
'宣言
 
Public Overloads Function OpenExcel( _
   ByVal stream As Stream, _
   ByVal warningList As ExcelWarningList _
) As Boolean

パラメータ

stream
ストリーム
warningList
Excel警告リスト

戻り値の型

Boolean:成功した場合は True、それ以外の場合は False
例外
例外解説
System.ArgumentNullExceptionストリームが指定されていないか、指定されたストリームがNullです。
System.ArgumentExceptionストリームが指定されていないか、指定されたストリームが空です。
使用例
次のサンプルコードは、ストリームからExcelファイルを開きます。
string f; 
f = "D:\\pic.xls";
System.IO.FileStream s = new System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite);
FarPoint.Excel.ExcelWarningList wl = new FarPoint.Excel.ExcelWarningList();
try 
{ 
     fpSpread1.OpenExcel(s, wl); 
} 
catch (Exception ex) 
{ 
     MessageBox.Show(ex.Message); 
}

Dim f As String 
f = "D:\testforexception.xls"
Dim s As New System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite)
Dim wl As New FarPoint.Excel.ExcelWarningList
Try
     FpSpread1.OpenExcel(s, wl)
     Catch ex As Exception
     MessageBox.Show(ex.Message)
End Try
参照

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

 

 


© MESCIUS inc. All rights reserved.