Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you insert a newline in an RDL Textbox?

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>`
like image 399
sthiers Avatar asked Nov 29 '22 17:11

sthiers


1 Answers

edit textbox expression try some thing like

 ="1st line" & vbcrlf & "2nd line" 
like image 69
George Botros Avatar answered Dec 20 '22 05:12

George Botros