GetCsv(Int32,Int32,Int32,Int32,String,String,String,Boolean) Method
In This Topic
Gets the CSV text from a range.
Syntax
'Declaration
Public Overloads Function GetCsv( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal columnCount As Integer, _
ByVal As String, _
ByVal columnDelimiter As String, _
ByVal As String, _
ByVal As Boolean _
) As String
'Usage
Dim instance As Worksheet
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
Dim rowDelimiter As String
Dim columnDelimiter As String
Dim cellDelimiter As String
Dim forceCellDelimiter As Boolean
Dim value As String
value = instance.GetCsv(row, column, rowCount, columnCount, rowDelimiter, columnDelimiter, cellDelimiter, forceCellDelimiter)
Parameters
- row
- The start row.
- column
- The start column.
- rowCount
- The row count.
- columnCount
- The column count.
- rowDelimiter
- The row delimiter that is appended to the end of the row.
- columnDelimiter
- The column delimiter that is appended to the end of the column.
- cellDelimiter
- The cell delimiter that is appended to the beginning and end of the cell.
- forceCellDelimiter
- If
true
forces a cell delimiter to be appended to a cell.
See Also