Hello all,
I use a DevExpress XtraReport to build reports. I create in run-time the List of report's records. One field is XRRichText and contains simple markup:
<table cellpadding="0" cellspacing="0" style="font-family:Verdana;font-size:10px;width:100%;">
<tr>
<td style="width:40%;">value0</td>
<td style="width:30%;">value1</td>
<td style="width:30%;">value2</td>
</tr>
</table>
It's bind by next way:
XRRichTextControl.DataBindings.Add("Html", bindingSource, "HtmlField");
And finally it's render table in something like this:
value0 value1 value2
But I need a table, not a flat text, how can I do it?
Thanks.