You could implement the "Bold" method in B4I's CsBuilder as "Font(Font.DEFAULT_BOLD)"
In this way the code
It would be replaced by (valid for B4a and B4i)
Thank you
PS. Sorry about my English.
In this way the code
B4X:
#if b4i
Cs.Append("Nombre: ").Font(Font.DEFAULT_BOLD).Append("Lorem Ipsum").Pop
#else b4a
Cs.Append("Nombre: ").Bold.Append("Lorem Ipsum").Pop
#End If
B4X:
Cs.Append("Nombre: ").Bold.Append("Lorem Ipsum").Pop
Thank you
PS. Sorry about my English.