Posted 8 November 2017, 5:10 pm EST
i got some difficulty with wordwarp. my word are split on other line
Forums Home / ActiveReports / ActiveReports v7+
Posted by: matieu.michaud on 8 November 2017, 5:10 pm EST
Posted 8 November 2017, 5:10 pm EST
i got some difficulty with wordwarp. my word are split on other line
Posted 9 November 2017, 2:59 am EST
Hello,
I could observe the issue at my end as well and it looks like a bug. I’ll forward it to the concerned team for further review and will update you. Tracking Id - 249436
Sorry for the inconvenience you’re facing.
Posted 9 November 2017, 6:33 am EST
In your report, the text in xml source uses “A0” character as words separator. Please use the following workaround with script, to avoid this:
public void Detail_Format()
{
this.txtFF5_DESCR_11.Text =this.txtFF5_DESCR_11.Text.Replace('\x00A0','\x0020');
}