Parameters
- stream
- Stream to which to save the data
Return Value
Boolean: true if successful; false otherwise
Exception | Description |
---|---|
System.ArgumentNullException | No stream specified or specified stream is null |
string f; f = "D:\\formula1.xls"; System.IO.FileStream s = new System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite); fpSpread1.SaveExcel(s); s.Close();
Dim f As String f = "D:\mptest.xls" Dim s As New System.IO.FileStream(f, IO.FileMode.Open, IO.FileAccess.ReadWrite) FpSpread1.SaveExcel(s) s.Close()