Forum Discussion

Mike_Sabourin's avatar
Mike_Sabourin
Contributor II
4 years ago

Dashboard Label question

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?
  • JohnMorehead's avatar
    JohnMorehead
    4 years ago

    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)