'宣言 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);