How to output the multiple line in dialogue box app designer

6 次查看(过去 30 天)
I have multiple lines, I want to print in the dialogue box.
fprintf('=====================================================================\n')
fprintf('User: ', app.sstr, app.pat);
fprintf('event: ', app.gm_id);
fprintf('\n')
I want to print this output on dialogue box using msgbox or any other related function in app designer MATLAB.

采纳的回答

Voss
Voss 2022-4-13
msgbox(sprintf([ ...
'===================================' ...
'==================================\n' ...
'User: %s %s event: %s\n'], ...
app.sstr, app.pat, app.gm_id));
Each %s may be changed according to the class of app.sstr, app.pat, app.gm_id.

更多回答(0 个)

类别

Help CenterFile 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!

Translated by