GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class > GetCsv Method : GetCsv(Int32,Int32,Int32,Int32,String,String,String,Boolean) Method |
true
forces a cell delimiter to be appended to a cell.
'Declaration Public Overloads Function GetCsv( _ ByVal row As System.Integer, _ ByVal column As System.Integer, _ ByVal rowCount As System.Integer, _ ByVal columnCount As System.Integer, _ ByVal rowDelimiter As System.String, _ ByVal columnDelimiter As System.String, _ ByVal cellDelimiter As System.String, _ ByVal forceCellDelimiter As System.Boolean _ ) As System.String
'Usage Dim instance As Worksheet Dim row As System.Integer Dim column As System.Integer Dim rowCount As System.Integer Dim columnCount As System.Integer Dim rowDelimiter As System.String Dim columnDelimiter As System.String Dim cellDelimiter As System.String Dim forceCellDelimiter As System.Boolean Dim value As System.String value = instance.GetCsv(row, column, rowCount, columnCount, rowDelimiter, columnDelimiter, cellDelimiter, forceCellDelimiter)
public System.string GetCsv( System.int row, System.int column, System.int rowCount, System.int columnCount, System.string rowDelimiter, System.string columnDelimiter, System.string cellDelimiter, System.bool forceCellDelimiter )
true
forces a cell delimiter to be appended to a cell.listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetCsv(0,0,2,2, "\n", ",", "").ToString()); //listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetCsv(0, 0, 2, 2, "\n", ",", "", false).ToString()); //listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetCsv(0, 0, 2, 2, "\n", ",", "", false, GrapeCity.Windows.SpreadSheet.Data.TextFileSaveFlags.AsViewed).ToString());
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetCsv(0, 0, 2, 2, ChrW(10), ",", "").ToString()) 'ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetCsv(0, 0, 2, 2, ChrW(10), ",", "", False).ToString()) 'ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetCsv(0, 0, 2, 2, ChrW(10), ",", "", False, GrapeCity.Windows.SpreadSheet.Data.TextFileSaveFlags.AsViewed).ToString())
Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6