GrapeCity.Xaml.SpreadSheet.UI
SaveTextFileRangeAsync Method (GcSpreadSheet)


GrapeCity.Xaml.SpreadSheet.UI Namespace > GcSpreadSheet Class : SaveTextFileRangeAsync Method
The destination sheet index to save to.
Starting row index.
Starting column index.
The number of rows.
The number of columns.
Stream to which to save the text range.
The export flags.
Row delimiter string.
Column delimiter string.
Cell delimiter string.
Saves the range of cells in the specified sheet as delimited text with the specified delimiters, to a stream asynchronously.
Syntax
'Declaration
 
Public Function SaveTextFileRangeAsync( _
   ByVal sheetIndex As Integer, _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer, _
   ByVal stream As Stream, _
   ByVal flags As TextFileSaveFlags, _
   ByVal rowDelimiter As String, _
   ByVal columnDelimiter As String, _
   ByVal cellDelimiter As String _
) As IAsyncAction
'Usage
 
Dim instance As GcSpreadSheet
Dim sheetIndex As Integer
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
Dim stream As Stream
Dim flags As TextFileSaveFlags
Dim rowDelimiter As String
Dim columnDelimiter As String
Dim cellDelimiter As String
Dim value As IAsyncAction
 
value = instance.SaveTextFileRangeAsync(sheetIndex, row, column, rowCount, columnCount, stream, flags, rowDelimiter, columnDelimiter, cellDelimiter)
public IAsyncAction SaveTextFileRangeAsync( 
   int sheetIndex,
   int row,
   int column,
   int rowCount,
   int columnCount,
   Stream stream,
   TextFileSaveFlags flags,
   string rowDelimiter,
   string columnDelimiter,
   string cellDelimiter
)

Parameters

sheetIndex
The destination sheet index to save to.
row
Starting row index.
column
Starting column index.
rowCount
The number of rows.
columnCount
The number of columns.
stream
Stream to which to save the text range.
flags
The export flags.
rowDelimiter
Row delimiter string.
columnDelimiter
Column delimiter string.
cellDelimiter
Cell delimiter string.
See Also

Reference

GcSpreadSheet Class
GcSpreadSheet Members