TAdvStringGrid: anchor and link color

Hello!


I want each link set a specific color such us tag font.

For example, for font
AdvStringGrid1.Cells[1, 1] := '<p align="center"><font color="red">Red Font </font></p>'

For href
AdvStringGrid1.Cells[1, 1] := '<p><a href="HREF" style="color: red">Link</a></p>'

But the last example does not work.
Property UrlColor not suitable because it changes the color of all the links.

How can I do this?

It is by design that hyperlinks are displayed with the color as set by grid.URLColor (similar to how this works in a browser)
There is currently not a setting to override the hyperlink color per cell, only global.

Thanks a lot.