May be is anybody knows, is it possible use SD FlexGrid and CSBuilder together?
i tryed this, but this way is incorrect...
i tryed this, but this way is incorrect...
B4X:
Sub Button1_Click
'It doesn't matter whether the methods are chained or split into several lines:
Dim cs As CSBuilder
cs.Initialize.Color(Colors.Red).Append("Hello ")
cs.Bold.Color(Colors.Green).Append("Colorful ").Pop.Pop 'two pops: the first removes the green color and the second removes the bold style
cs.Append("World!").PopAll
Label1.Text = cs
'can also be set as the activity title
Activity.Title = cs
'and Toast messages and in other places...
ToastMessageShow(cs, True)
SDFlexGrid.SetCellValue(2,1,cs) 'Here Cell looks only as simple text!
End Sub
Last edited: