Loads the CSV file with the specified separator asynchronously.
Syntax
'Declaration
Public Function OpenTextFileAsync( _
ByVal As Integer, _
ByVal As Stream, _
ByVal As TextFileOpenFlags, _
ByVal As String, _
ByVal columnDelimiter As String, _
ByVal As String _
) As IAsyncAction
'Usage
Dim instance As GcSpreadSheet
Dim sheetIndex As Integer
Dim stream As Stream
Dim flags As TextFileOpenFlags
Dim rowDelimiter As String
Dim columnDelimiter As String
Dim cellDelimiter As String
Dim value As IAsyncAction
value = instance.OpenTextFileAsync(sheetIndex, stream, flags, rowDelimiter, columnDelimiter, cellDelimiter)
Parameters
- sheetIndex
- The destination sheet index for loading.
- stream
- Stream from which to load.
- flags
- The import flags.
- rowDelimiter
- Row delimiter string.
- columnDelimiter
- Column delimiter string.
- cellDelimiter
- Cell delimiter string.
See Also