How do you pass CSBuilder to another CSBuilder without loosing the Color properties?
For example
For example
B4X:
Dim Label1 As Label
Label1.Initialize("")
Dim CS1 As CSBuilder
CS1.Initialize
Dim CS2 As CSBuilder
CS2.Initialize
CS1.Color(Colors.Red).Pop.Append("Testing").Pop.Color(Colors.Blue).Pop.Append("CSBuilder").PopAll
CS2 = CS1
Label1.Text = CS2