How to wrap a word
Hi, my first col in cross tab is a name. I have many cols, so sometimes report doesn't fit in the page.
But, if my first col is a name(first name surname) so I could wrap it, and shorten its width.
But how?
In Delphi I tried(in OnGetText of my DataField):
Just to replace blank space(' ') with enter. But it didn't work.
But, if my first col is a name(first name surname) so I could wrap it, and shorten its width.
But how?
In Delphi I tried(in OnGetText of my DataField):
Text:=stringReplace(Text, ' ', #13+#10, [rfReplaceAll]);
Just to replace blank space(' ') with enter. But it didn't work.