So, I'm having a large string that is inside some column (TAdvStringGrid). Something like this:
"This is some example text that i'm trying to display"
But, since the column is to short something like this is shown:
"This is some example"
So, as you can see there are some words missing and I would like to add 3 dots at the end of the string automatically when this happens so that user can see if he needs to resize the column to see the full text.
"This is some example tex..."
This would be it. Is this possible in TAdvStringGrid?
set:
AdvStringGrid1.EnhTextSize:= true;
Thanks!