4

How do you insert a newline in an RDL-2005 textbox definition ?

Example: how to display FooNewline on a newline inside the textbox:

`<Textbox Name=""RdlDescriptorLegendTextbox"">                                
      <Value>Foo FooNewline</Value>
</Textbox>`
sthiers
  • 3,489
  • 5
  • 34
  • 47

2 Answers2

21

edit textbox expression try some thing like

 ="1st line" & vbcrlf & "2nd line" 
George Botros
  • 4,127
  • 3
  • 28
  • 50
  • Thank you for the input. I'm not working on rdl project anymore, hence not able to validate this idea. – sthiers Mar 06 '12 at 12:33
  • @sthiers the answer was put for the benefit of the masses on the internet. Obviously his answer two years later is not relevant to you... at least I hope you wouldn't be waiting that long! :D – n00b Sep 25 '15 at 17:32
0

I might be missing something, however I'm able to do it like so:

<Textbox Name="textbox10">
   <Value>Foo
    FoodNewline</Value>
</Textbox>
MrEdmundo
  • 5,105
  • 13
  • 46
  • 58