FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > FpSpread クラス > Save メソッド : Save(Stream,SaveXMLOptions) メソッド |
'Declaration Public Overloads Function Save( _ ByVal stream As Stream, _ ByVal saveOption As SaveXMLOptions _ ) As Boolean
'使用法 Dim instance As FpSpread Dim stream As Stream Dim saveOption As SaveXMLOptions Dim value As Boolean value = instance.Save(stream, saveOption)
public bool Save( Stream stream, SaveXMLOptions saveOption )
string fileName; fileName = ""..\\..\\bin\\savespreadstream.xml"; System.IO.Stream stream; stream = System.IO.File.Create(fileName); fpSpread1.Save(stream, FarPoint.Win.Spread.SaveXMLOptions.All);
Dim fileName As String fileName = "..\bin\savespreadstream.xml" Dim stream As System.IO.Stream stream = System.IO.File.Create(fileName, System.IO.FileMode.Create) fpSpread1.Save(stream, FarPoint.Win.Spread.SaveXMLOptions.All)