Page 1 of 1

Line feed in Virtual Console Button Label

Posted: Thu Oct 26, 2023 4:57 am
by Palmer
Is there a way to enter a line feed in a button label in Virtual Console? It is difficult to get the text to display like I want by just adding spaces.

Re: Line feed in Virtual Console Button Label

Posted: Thu Oct 26, 2023 9:31 am
by janosvitok
You need to open the XML file in a text editor and add 
 where you want new lines.

e.g.

change

Code: Select all

<Button Caption="Line 1 Line 2 Line 3" ID="0" Icon="">
to

Code: Select all

<Button Caption="Line 1&#10;Line 2&#10;Line 3" ID="0" Icon="">
Jano

Re: Line feed in Virtual Console Button Label

Posted: Thu Oct 26, 2023 4:49 pm
by Palmer
Very helpful. Thanks!

--Dean