[]
Saves the sheet as delimited text to a file with specific delimiters.
public bool SaveTextFile(string fileName, TextFileFlags textFileFlags)
Public Function SaveTextFile(fileName As String, textFileFlags As TextFileFlags) As Boolean
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 |
Type | Description |
---|---|
bool |
Saves the sheet as delimited text to a stream with specific delimiters.
public bool SaveTextFile(Stream stream, TextFileFlags textFileFlags)
Public Function SaveTextFile(stream As Stream, textFileFlags As TextFileFlags) As Boolean
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 |
Type | Description |
---|---|
bool |
Saves the sheet as delimited text to a file with specific delimiters.
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
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 |
Type | Description |
---|---|
bool |
Saves the sheet as delimited text to a stream with specific delimiters.
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
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 |
Type | Description |
---|---|
bool |