Automatic wrap of lines

Is there a way to automatically expand height of the row in TAdvStringGrid based on number of lines in a single cell?

In other words, if I place a text in a Cell and it is too long so it doesn't fit the width of the cell so it needs to be wrapped to second and third row, it should automatically expand cell to have two or 3 lines, and thus, entire row to have 2 or 3 lines along with that cell.

Of course, I can count number of CRLF or <br> and multiply by single row height but that is not really a precise calculation of the height and the above is likely already supported I just haven't been able to find it so far.

Did you try: grid.AutoSizeRow(s)?

Yes, that works great, I knew there was something already available. Thank you so much!