Mathias F
Mathias F

Reputation: 15901

Display html formated text in report

In my report I display a record from a table of my database. One of my columns has data formated as html. I want to display this as rendered html.

So

<b>nice header</b>

should render nice header

Can I do this in a report?

Upvotes: 2

Views: 1733

Answers (2)

jimconstable
jimconstable

Reputation: 2388

  1. Right-click on your text
  2. Goto Placeholder properties
  3. Set the markup type to HTML

From Here and Here

Upvotes: 2

ScaleOvenStove
ScaleOvenStove

Reputation: 760

one way would be in your case would be to do formatting based on expressions or using .NET code in your report, and saying if you see some html tag to do formatting like "x"

Upvotes: 0

Related Questions