LoadTextFile(SheetView,String,Boolean,IncludeHeaders,Boolean,String,String,String,Encoding) Method
In This Topic
Loads the text file with the specified formatting.
Syntax
'Declaration
Public Overloads Shared Sub LoadTextFile( _
ByVal As SheetView, _
ByVal As String, _
ByVal As Boolean, _
ByVal As IncludeHeaders, _
ByVal As Boolean, _
ByVal As String, _
ByVal columnDelimiter As String, _
ByVal As String, _
ByVal As Encoding _
)
'Usage
Dim sheetView As SheetView
Dim fileName As String
Dim unformatted As Boolean
Dim includeHeaders As IncludeHeaders
Dim includeFooter As Boolean
Dim rowDelimiter As String
Dim columnDelimiter As String
Dim cellDelimiter As String
Dim encoding As Encoding
SpreadSerializer.LoadTextFile(sheetView, fileName, unformatted, includeHeaders, includeFooter, rowDelimiter, columnDelimiter, cellDelimiter, encoding)
Parameters
- sheetView
- Sheet into which to load the text data
- fileName
- Path and name of file from which to load text
- unformatted
- Whether to bypass formatting
- includeHeaders
- Whether headers are handled as data
- includeFooter
- Whether the footer is handled as data
- rowDelimiter
- Row delimiter string
- columnDelimiter
- Column delimiter string
- cellDelimiter
- Cell delimiter string
- encoding
- Encoding
See Also