TADVStringGrid to PDF

I have a grid that contains a lot of text per cell. This text is wrapped visually and presented well to the user. However if I create a pdf using AdvGridPDFIO component, the resultant pdf has only one line per cell and the line runs off the edge of the cell. 


I do have grid.WordWrap = True.

I could not see anything in the Options setting of the AdvGridPDFIO component that might affect this.

What setting have I overlooked?

Thanks
Peter

How to reproduce this?
We retested this here with:

  AdvStringGrid1.Cells[1, 1] := 'This is a long text with many characters';

  AdvStringGrid1.DefaultRowHeight := 100;

  AdvStringGrid1.DefaultColWidth:= 100;

  AdvGridPDFIO1.Options.OpenInPDFReader := True;

  AdvGridPDFIO1.Save('test.pdf');

and this shows wordwrapped text in cells: