Skip to main content
Mike_Sabourin
Contributor
November 23, 2021
Solved

Dashboard Label question

  • November 23, 2021
  • 2 replies
  • 0 views

Source:   Migrated from Champions

Does anyone know if it’s possible to use a hard enter (ctrl + enter or vbcrlf in vba code) in a label?

Best answer by JohnMorehead

You could write a very generic XFBR to simply replace a character sequence of your choosing with a newline, so you could call the function like:

XFBR(My_XFBR, ReplaceWithNewline, Text=[This is \n my text])

and the code does a simple String.Replace("\n",Environment.Newline)

2 replies

Newcomer
November 23, 2021

I don’t think you can. However, the text does support multiline. I did raise an enhancement to add a disable option in Text which will make life a lot easier.

Newcomer
November 23, 2021

Yes, I was able to get newline characters into a button using an XFBR:

JohnMorehead_0-1637703765512.png

 

image.png890×342 11.2 KB

 

JohnMorehead_1-1637703765586.png

 

Mike_Sabourin
Contributor
November 23, 2021

Yeah. I had considered that, but wanted to be native to the dashboard. Thanks for the affirmation that it would work though!

Newcomer
November 23, 2021

You could write a very generic XFBR to simply replace a character sequence of your choosing with a newline, so you could call the function like:

XFBR(My_XFBR, ReplaceWithNewline, Text=[This is \n my text])

and the code does a simple String.Replace("\n",Environment.Newline)