TTMSFMXGrid LF/CR

Hi,

When I set the contents of a cell e.g.

PDFGrid.Cells[0,ItemsListView.Items.Count+2]:=
  MenusListView.Items[MenusListView.ItemIndex].Data['Notes'].AsString;

Any LF/CR are being stripped out. How do I maintain these?

Ken

When using the following code, we are able to show multiple lines

  TMSFMXGrid1.BeginUpdate;
  TMSFMXGrid1.Cells[1, 1] := 'This is line 1'+#13#10+'This is line 2';
  TMSFMXGrid1.NeedStyleLookup;
  TMSFMXGrid1.ApplyStyleLookup;
  TMSFMXGrid1.ColumnWidths[1] := 75;
  TMSFMXGrid1.RowHeights[1] := 75;
  TMSFMXGrid1.EndUpdate;