In VCL, I use this line in the procedure for loading data from a .csv file:
StringGrid1.Rows[i].Assign(SRow);
But, in FMX, there is no property Rows[] so that I can insert delimited text with a line.
I can use StringGrid1.Cells[i,j], but then I'll have to handle the delimiters myself.
How to write a string to a TStringrid with DelimitedText in FMX?