[]
        
(Showing Draft Content)

FarPoint.Win.Spread.SheetView.SaveTextFile

SaveTextFile Method

SaveTextFile(string, TextFileFlags)

Saves the sheet as delimited text to a file with specific delimiters.

Declaration
public bool SaveTextFile(string fileName, TextFileFlags textFileFlags)
Public Function SaveTextFile(fileName As String, textFileFlags As TextFileFlags) As Boolean
Parameters
Type Name Description
string fileName

Path and name of file to which to save the text of the sheet

TextFileFlags textFileFlags

Specifies how to process the data when saving to a text file

Returns
Type Description
bool

SaveTextFile(Stream, TextFileFlags)

Saves the sheet as delimited text to a stream with specific delimiters.

Declaration
public bool SaveTextFile(Stream stream, TextFileFlags textFileFlags)
Public Function SaveTextFile(stream As Stream, textFileFlags As TextFileFlags) As Boolean
Parameters
Type Name Description
Stream stream

Stream to which to save the text of the sheet

TextFileFlags textFileFlags

Specifies how to process the data when saving to a text file

Returns
Type Description
bool

SaveTextFile(string, TextFileFlags, IncludeHeaders, string, string, string)

Saves the sheet as delimited text to a file with specific delimiters.

Declaration
public bool SaveTextFile(string fileName, TextFileFlags textFileFlags, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter)
Public Function SaveTextFile(fileName As String, textFileFlags As TextFileFlags, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String) As Boolean
Parameters
Type Name Description
string fileName

Path and name of file to which to save the text of the sheet

TextFileFlags textFileFlags

Specifies how to process the data when saving to a text file

IncludeHeaders includeHeaders

Whether to export headers as data

string rowDelimiter

Row delimiter string

string columnDelimiter

Column delimiter string

string cellDelimiter

Cell delimiter string

Returns
Type Description
bool

SaveTextFile(Stream, TextFileFlags, IncludeHeaders, string, string, string)

Saves the sheet as delimited text to a stream with specific delimiters.

Declaration
public bool SaveTextFile(Stream stream, TextFileFlags textFileFlags, IncludeHeaders includeHeaders, string rowDelimiter, string columnDelimiter, string cellDelimiter)
Public Function SaveTextFile(stream As Stream, textFileFlags As TextFileFlags, includeHeaders As IncludeHeaders, rowDelimiter As String, columnDelimiter As String, cellDelimiter As String) As Boolean
Parameters
Type Name Description
Stream stream

Stream to which to save the text of the sheet

TextFileFlags textFileFlags

Specifies how to process the data when saving to a text file

IncludeHeaders includeHeaders

Whether to export headers as data

string rowDelimiter

Row delimiter string

string columnDelimiter

Column delimiter string

string cellDelimiter

Cell delimiter string

Returns
Type Description
bool