Multi-line Mouse over Text

Is there any way to create multi-lines for mouse-over text? I try to use expression binding like this:

[code]'Alarm No: ’ + {Alarm Toggle Bit.AlarmNo} + ‘.’ + {Alarm Toggle Bit.BitNo}

  • ‘\r\n’ + 'Name: ’ + {Alarm Toggle Bit.AlarmText} + ‘\r\n’ + ‘\r\n’
  • 'Description: ’ + {Alarm Toggle Bit.AlarmDesc}[/code]

But seems like the \r\n is simply ignored.

[attachment=0]alarm.png[/attachment]

Hi

Format it as HTML using

'<html>Alarm No: ' + {Alarm Toggle Bit.AlarmNo} + '.' + {Alarm Toggle Bit.BitNo} +'<br>Name: ' + {Alarm Toggle Bit.AlarmText} + '<br>' + '<br>Description: ' + {Alarm Toggle Bit.AlarmDesc}

Cheers

OK,

This is really cool! Thanks, it works! :smiley: