Dim cs As CSBuilder
#if b4a
cs.Initialize.Alignment("ALIGN_CENTER").color(Colors.White).Size(20).Typeface(Typeface.FONTAWESOME).VerticalAlign(1dip).Append(Chr(0xF1EC)).Pop. _
Typeface(Typeface.DEFAULT_BOLD).Append(CRLF).Size(14).Append("Calculators").PopAll
XUIViewsUtils.SetTextOrCSBuilderToLabel(SwiftBtnCalc.xLBL, cs)
#else if B4I
cs.Initialize.Alignment("ALIGN_CENTER").Color(Colors.White).Font(Font.CreateFontAwesome(20)).VerticalAlign(1dip).Append(Chr(0xF1EC)).Pop. _
Font(Font.DEFAULT).Append(CRLF).Append("Hex").PopAll
XUIViewsUtils.SetTextOrCSBuilderToLabel(SwiftBtnCalc.xLBL, cs)
SwiftBtnCalc.xLBL.As(Label).SizeToFit
#end if