How to wrap text within buttons of app-designer
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Leon
el 19 de Oct. de 2019
Comentada: Adam Danz
el 30 de Abr. de 2021
Is there a way I can chose to wrap the text in my button to a 2nd row, instead of letting it to overflow outside my button?
Thanks!
0 comentarios
Respuesta aceptada
Adam Danz
el 19 de Oct. de 2019
Editada: Adam Danz
el 30 de Abr. de 2021
You can make set multi-lined text in a button from within the startup function startupFcn().
The first line below creates two lines of text within the button.
The second line moves the button down and doubles its vertical size. Set the button width and the position of the top of the button from the DesignView.
% Code that executes after component creation
function startupFcn(app, arg1)
app.Button.Text = ['Really long',newline,'button name']; % or sprintf('Really long\nbutton name')
app.Button.Position([2,4]) = app.Button.Position([2,4]) + [-1,1].*app.Button.Position(4);
% If you'd rather the button size to expand upward rather than downward,
% Replace the 2nd line above with
% app.Button.Position(4) = app.Button.Position(4)*2;
end
Update
4 comentarios
Eric Sargent
el 9 de Dic. de 2020
As of R2020b components that support multiline text now support WordWrap, including uibutton.
uilabel, uitextarea, uibutton, uitogglebutton, uicheckbox, uiradiobutton
Más respuestas (1)
Eric Sargent
el 9 de Dic. de 2020
As of R2020b components that support multiline text now support WordWrap, including uibutton.
uilabel, uitextarea, uibutton, uitogglebutton, uicheckbox, uiradiobutton
1 comentario
Ver también
Categorías
Más información sobre Annotations 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!