MikeTWebb
MikeTWebb

Reputation: 9279

SSRS wrap text in Text Boxes

I have an SSRS report with a Text box that the user needs to enter notes into. If the user types a super long sentence, the text extends beyond the edge of the page in MS Word. I have set the property CanGrow to false. Is there something that needs to be done to ensure the text wraps inside the text box?

Upvotes: 2

Views: 12541

Answers (2)

Stephanie
Stephanie

Reputation: 11

I set CanGrow = False and increased the size of the textbox to accommodate the text. This, of course, will not likely work if you do not have the room to increase the size of the textbox. That is what I will work on next. :( My textbox is inside of a rectangle.

Upvotes: 1

Nathan Griffiths
Nathan Griffiths

Reputation: 12756

SSRS renders report data regions as a set of nested tables in Word, you can sometimes improve Word rendering layout by putting a Textbox inside another region e.g. a rectangle.

Upvotes: 1

Related Questions