Reputation: 25
If I try to change it, its size is too limited
ActiveDocument.Tables(2).Cell(3, 2).Range = text + " " + String(200,".")
Upvotes: 0
Views: 133
Reputation: 13505
For example:
Sub Demo()
Const Txt As String = "abcdefghijklmnopqrstuvwxyz"
With ActiveDocument.Tables(2).Cell(3, 2)
.Range.Text = Txt + " " + String(200, ".")
.Range.FitTextWidth = .Width
End With
End Sub
Upvotes: 1