FarPoint.Web.Spread 名前空間 > FpSpread クラス > SaveExcel メソッド : SaveExcel(Stream,ExcelWarningList) メソッド |
'Declaration
Public Overloads Function SaveExcel( _ ByVal stream As Stream, _ ByVal warningList As ExcelWarningList _ ) As Boolean
public bool SaveExcel( Stream stream, ExcelWarningList warningList )
string f; f = "D:\savexcel.xls"; System.IO.FileStream s = new System.IO.FileStream(f, IO.FileMode.OpenorCreate, IO.FileAccess.ReadWrite); FarPoint.Excel.ExcelWarningList w = new FarPoint.Excel.ExcelWarningList(); FpSpread1.SaveExcel(s, w);
Dim f As String f = "D:\savexcel.xls" Dim s As New System.IO.FileStream(f, IO.FileMode.OpenOrCreate, IO.FileAccess.ReadWrite) Dim w As New FarPoint.Excel.ExcelWarningList FpSpread1.SaveExcel(s, w)