PowerTools SPREAD for Windows Forms 8.0J
SaveExcel(Stream,ExcelSaveFlags,ExcelWarningList,String) メソッド


ストリーム
保存フラグ
Excel警告リスト
ファイルのパスワード
SPREADの内容をヘッダおよび警告リストと共に指定したストリームに保存します。
構文
'Declaration
 
Public Overloads Function SaveExcel( _
   ByVal stream As Stream, _
   ByVal saveFlags As ExcelSaveFlags, _
   ByVal warningList As ExcelWarningList, _
   ByVal password As String _
) As Boolean
'使用法
 
Dim instance As FpSpread
Dim stream As Stream
Dim saveFlags As ExcelSaveFlags
Dim warningList As ExcelWarningList
Dim password As String
Dim value As Boolean
 
value = instance.SaveExcel(stream, saveFlags, warningList, password)
public bool SaveExcel( 
   Stream stream,
   ExcelSaveFlags saveFlags,
   ExcelWarningList warningList,
   string password
)

パラメータ

stream
ストリーム
saveFlags
保存フラグ
warningList
Excel警告リスト
password
ファイルのパスワード
例外
例外説明
System.ArgumentNullExceptionストリームが指定されていないか、指定されたストリームがNullです。
次のサンプルコードは、ストリームをExcelファイルに保存します。
string f;
f = "D:\\SpreadWin.xls";
System.IO.FileStream s = new System.IO.FileStream(f, System.IO.FileMode.Create, System.IO.FileAccess.ReadWrite);
FarPoint.Excel.ExcelWarningList w = new FarPoint.Excel.ExcelWarningList();
fpSpread1.SaveExcel(s, FarPoint.Excel.ExcelSaveFlags.NoFlagsSet, w, "test");
s.Close();
Dim f As String 
f = "D:\SpreadWin.xls"
Dim s As New System.IO.FileStream(f, IO.FileMode.Create,IO.FileAccess.ReadWrite)
Dim w As New FarPoint.Excel.ExcelWarningList 
FpSpread1.SaveExcel(s, FarPoint.Excel.ExcelSaveFlags.NoFlagsSet, w, "test")
s.Close()
参照

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

 

 


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