How to insert a new line into an RDL text box?

How do you insert a new line into an RDL-2005 text field definition?

Example: how to display FooNewline in a new line inside a text field:

`<Textbox Name=""RdlDescriptorLegendTextbox""> <Value>Foo FooNewline</Value> </Textbox>` 
+4
source share
2 answers

edit text expression try something like

  ="1st line" & vbcrlf & "2nd line" 
+20
source

I might be missing something, but I can do it like this:

 <Textbox Name="textbox10"> <Value>Foo FoodNewline</Value> </Textbox> 
0
source

Source: https://habr.com/ru/post/1332218/


All Articles