I have a table where all cells have Cell.WordWrap
set to true
. Some of them have text longer than cell width so it's wrapped. I need to find them (with longer text) and set them Cell.FitText
= True
, but can't figure how.
I tried to read row/cell .height.
But it does not return real row/cell height but minimum height regardless how Cell.HeightRule
is set.
Thanks for your tips!
One way to determine whether the content of a cell wraps is to compare the line numbering of the start and end of the cell content, as demonstrated in the following code example.
Information
property, which has numerous enumeration members, includingwdFirstCharacterLineNumber
.FitText = True