Bullets in MATLAB GUIs
Mostrar comentarios más antiguos
I would like to know if there is in MATLAB some uiobject to implement the functionality of bullets.
4 comentarios
Matt Tearle
el 18 de Feb. de 2011
What do you mean by the functionality of bullets? Do you want some output given as a bulleted list of text?
Mtlb Usr
el 18 de Feb. de 2011
Matt Tearle
el 18 de Feb. de 2011
But what (if anything) do you want the bullets to *do*? Or are you just looking for output display? In other words, would a text box suffice, if you could format the text to display a bulleted list?
Mtlb Usr
el 18 de Feb. de 2011
Respuesta aceptada
Más respuestas (2)
Walter Roberson
el 18 de Feb. de 2011
The more likely to work is to put char(183) at that point. That is officially "middot", a relatively small mark.
What might work is to use, e.g.,
<HTML>•cccc
The <HTML> must be the first thing in the string for that particular line.
If it works it will be Unicode character 8226, which is not normally possible to put in to a uicontrol; see more discussion here
Oleg Komarov
el 18 de Feb. de 2011
0 votos
Are you interested in uitree and uitreenodes, then give a look at this undocumented uitree and the related posts on the bottom.
1 comentario
Mtlb Usr
el 18 de Feb. de 2011
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!