Spread Windows Forms 10.0 Product Documentation
LoadTextFile(SheetView,IncludeHeaders,String,String,String,String,TextFileFlags) Method
Example 


Sheet into which to load the text data
Whether headers are handled as data
Row delimiter string
Column delimiter string
Cell delimiter string
String that contains data to load
Specifies how to process the data when loading from a text file
Loads the text (string) data with the specified formatting.
Syntax
'Declaration
 
Public Overloads Shared Sub LoadTextFile( _
   ByVal sheetView As SheetView, _
   ByVal includeHeaders As IncludeHeaders, _
   ByVal rowDelimiter As String, _
   ByVal columnDelimiter As String, _
   ByVal cellDelimiter As String, _
   ByVal data As String, _
   ByVal flags As TextFileFlags _
) 
'Usage
 
Dim sheetView As SheetView
Dim includeHeaders As IncludeHeaders
Dim rowDelimiter As String
Dim columnDelimiter As String
Dim cellDelimiter As String
Dim data As String
Dim flags As TextFileFlags
 
SpreadSerializer.LoadTextFile(sheetView, includeHeaders, rowDelimiter, columnDelimiter, cellDelimiter, data, flags)
public static void LoadTextFile( 
   SheetView sheetView,
   IncludeHeaders includeHeaders,
   string rowDelimiter,
   string columnDelimiter,
   string cellDelimiter,
   string data,
   TextFileFlags flags
)

Parameters

sheetView
Sheet into which to load the text data
includeHeaders
Whether headers are handled as data
rowDelimiter
Row delimiter string
columnDelimiter
Column delimiter string
cellDelimiter
Cell delimiter string
data
String that contains data to load
flags
Specifies how to process the data when loading from a text file
Example
This example uses the LoadTextFile method.
FarPoint.Win.Spread.Model.SpreadSerializer.LoadTextFile(fpSpread1.ActiveSheet, FarPoint.Win.Spread.Model.IncludeHeaders.None, "\t", ",", "", "FarPoint", FarPoint.Win.Spread.TextFileFlags.None);
Dim s As New FarPoint.Win.Spread.Model.SpreadSerializer
s.LoadTextFile(FpSpread1.ActiveSheet, FarPoint.Win.Spread.Model.IncludeHeaders.None, Chr(9), ",", "", "FarPoint", FarPoint.Win.Spread.TextFileFlags.None)
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SpreadSerializer Class
SpreadSerializer Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.