appdesigner listbox item does not recognize HTML tags
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Unfortunately, this command does not change the color of the first item (named "XXX") in my appdesigner UI Liastbox!
app.ListBox_Test.Items{1} = '<html><font color="red"> XXX </font></html>'
It works fine in GUIDE but not in appdesigner!
This link clarifies that this feature is still not availble in appdesgner for liastbox:
Any syggestion or work around to make this feature work in appdesigner?
0 comentarios
Respuestas (1)
Cris LaPierre
el 12 de Dic. de 2018
Editada: Cris LaPierre
el 12 de Dic. de 2018
You would need to use code like this to change the font color (changes it for all items in the list):
app.ListBox.FontColor = 'r';
2 comentarios
Ver también
Categorías
Más información sobre Desktop en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!