SharpLeaf Reference > Table Methods > AddCSV Method

Table.AddCSV Method

Flow a CSV array into table from current cell on. New rows will start from current column.

Overloads

Example

   tb = new Table();
  // comma separates row cells, semicolon separates rows
   csv = ",Col 1,Col 2,Col 3,Col 4;Row A,A1,A2,A3,A4;Row B,B1,B2,B3,B4";
   tb.AddCSV(csv,',',';');
   lf.IncludeTable(tb);

See also ...

Filling cells of a Table | Table Members | Table.AddColumns Method | Table.AddRows Method


Send comments on this topic
© Dyalog Ltd 2021