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

保存先のストリーム。
Excel警告リスト
Spread コンポーネントの内容を警告リストと共に指定したストリームに保存します。
構文
'宣言
 
Public Overloads Function SaveExcel( _
   ByVal stream As Stream, _
   ByVal warningList As ExcelWarningList _
) As Boolean

パラメータ

stream
保存先のストリーム。
warningList
Excel警告リスト

戻り値の型

Boolean:成功した場合は True、それ以外の場合は False
例外
例外解説
System.ArgumentNullExceptionストリームが指定されていないか、指定されたストリームがNullです。
使用例
次のサンプルコードは、Excelファイルをストリームに保存します。
string f;  
f = "D:\\formula1.xls";  
System.IO.FileStream s = new System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite); 
FarPoint.Excel.ExcelWarningList w = new FarPoint.Excel.ExcelWarningList(); 
fpSpread1.SaveExcel(s, w);
s.Close();

Dim f As String
f = "D:\mptest.xls" 
Dim s As New System.IO.FileStream(f, IO.FileMode.Open,IO.FileAccess.ReadWrite)
Dim w As New FarPoint.Excel.ExcelWarningList
FpSpread1.SaveExcel(s, w)
s.Close()
参照

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

 

 


© MESCIUS inc. All rights reserved.