App Designer: Update Text Area Value with parameter change
61 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
回答(2 个)
Cris LaPierre
2022-3-14
Now just figure out what action you want to trigger the change, and add the code to that callback function.
xiaokai an
2022-6-11
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 个评论
xiaokai an
2022-6-11
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);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!