Spread for ASP.NET 8.0 Product Documentation
SaveTextFile(String,Boolean) Method
Example 


Path and name of the file to which to save the sheet
Whether to save the data unformatted
Saves the sheet to a text file with the specified name.
Syntax
'Declaration
 
Public Overloads Function SaveTextFile( _
   ByVal fileName As String, _
   ByVal unformatted As Boolean _
) As Boolean
'Usage
 
Dim instance As SheetView
Dim fileName As String
Dim unformatted As Boolean
Dim value As Boolean
 
value = instance.SaveTextFile(fileName, unformatted)
public bool SaveTextFile( 
   string fileName,
   bool unformatted
)

Parameters

fileName
Path and name of the file to which to save the sheet
unformatted
Whether to save the data unformatted

Return Value

Boolean: true if successful; false otherwise
Remarks
Set the unformatted parameter to true to bypass the IFormatter in the StyleInfo for the cell and save the data as unformatted data or false to save it as formatted.
Example
This example saves the sheet to a text file.
private void Button1Click(object sender, System.EventArgs e)
{
FarPoint.Web.Spread.SheetView sv;
string s;
sv = FpSpread1.ActiveSheetView;
s = "D:\\mine.txt";
sv.SaveTextFile(s, true);
}
Private Sub Button1Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim sv As FarPoint.Web.Spread.SheetView
Dim s As String
sv = FpSpread1.ActiveSheetView
s = "D:\mine.txt"
sv.SaveTextFile(s, True)
End Sub
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SheetView Class
SheetView Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.