'宣言 Public Overloads Sub Save( _ ByVal stream As System.IO.Stream _ )
public void Save( System.IO.Stream stream )
パラメータ
- stream
- ワークブックの保存先となる System.IO.Stream。
'宣言 Public Overloads Sub Save( _ ByVal stream As System.IO.Stream _ )
public void Save( System.IO.Stream stream )
// ワークブックを新しい MemoryStream へ保存します MemoryStream ms = new MemoryStream(); _book.Save(ms); // ワークブックをクリアします _book.Clear(); // MemoryStream から再度ロードします ms.Position = 0; _book.Load(ms);