I want to have a Text column filled with formatted text created on the fly, not from database. I thought I could simply assign a CSBuilder value to the cell to show some formatted text since the cell layout consists of a single label within a panel. But so far I haven't been able to make it work. Following code only shows plain text with formatting lost.
What did I miss?
Or the B4xTable with flags example shows the only way to achieve this?
TIA
Following code block results in plain text, not formatted:
csb.Initialize.Append("Bon appetite restaurant->").Append("12345 main road").RelativeSize(2.0).Color(Colors.Magenta).Append("$15").Pop.Pop.Append(", paid").PopAll
cols(0)=csb
What did I miss?
Or the B4xTable with flags example shows the only way to achieve this?
TIA