App Designer: Update Text Area Value with parameter change
Mostrar comentarios más antiguos
In MATLAB App Designer, I want to change/update the value in the text area object with some parameter change? Could you explain how can I achieve this task?
Respuestas (2)
Cris LaPierre
el 14 de Mzo. de 2022
0 votos
Now just figure out what action you want to trigger the change, and add the code to that callback function.
1 comentario
Sena Koçak
el 15 de Mzo. de 2022
xiaokai an
el 11 de Jun. de 2022
0 votos
My answer may help you.
Pass 'app' as a parameter into the m file containing the logic program, and then use it in the m file
app. TextArea. Value = num2str(666666);
Such code rewrites the value of text.
1 comentario
xiaokai an
el 11 de Jun. de 2022
When the program runs too fast, it may not display normally. You need to add the following pause code near the rewritten code
pause(1);
Categorías
Más información sobre Develop Apps Using App Designer 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!