I add a table in my documents but I want to avoid of wordwrapping in my
table
so I set ACell.WordWrap = false for all my cells but it doesnot still
working;
ATabel := ADoc.tables.Add(ARange, 2, 4, .....);
ATable.Rows.Item(1).Cells.Item(1) := 'very long text............';
ATable.Rows.Item(1).Cells.Item(1).WordWrap := False;
Doug Robbins - Word MVP - 10 Oct 2006 18:40 GMT
From my testing, it appears that you have to set the .FitText attribute as
well:
With ActiveDocument.Tables(1).Cell(1, 1)
.WordWrap = False
.FitText = True
.Range.Text = "this should be too long to fit in the cell."
End With
What it does however is compress the text so that it fits on one line in the
cell which may make it unreadable.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
>I add a table in my documents but I want to avoid of wordwrapping in my
> table
[quoted text clipped - 4 lines]
> ATable.Rows.Item(1).Cells.Item(1) := 'very long text............';
> ATable.Rows.Item(1).Cells.Item(1).WordWrap := False;