01-28-2013 10:47 AM
How can I word wrap a column via scripting?
I added a column to a table but the text exceeds the column width.
I tried D2TabNumWordWrap in the script but it didn't work.
The column's properties shows Word wrap is selected but the text is not wrapped.
Attached is the code that creates the table and sample data.
Any assistance would be appreciated.
Solved! Go to Solution.
01-29-2013 01:19 AM
Hello JFiddie,
You must set the parameter:
D2TabNumClip(8) = 1
to enable the word wrapping and the parameter
D2TabColHeight = 5
to see two lines. I've added the changes to your script (see attachment).
Greetings
Walter
01-29-2013 10:40 AM
Walter,
Thank you, worked like a charm.
Would you know how to set the row height only on those that need it instead of every row?
-Joe
01-30-2013 12:39 AM
Hi Joe,
It is not possible to set the height of a certain row. This is a parameter which has an impact on the whole table.
Greetings
Walter
01-30-2013 06:49 AM
Walter,
Thank you for your time.
-Joe