how can i change the color of the text in the dialog box of errordlg ?

18 views (last 30 days)
how can i change the color of the text in the dialog box of errordlg ?

Accepted Answer

dpb
dpb on 16 Feb 2021
Use the \color{specifier} modifier for the text string passed. Will have to create an options struct to set interpreter to 'Tex'
opts.WindowStyle='modal';
opts.Interpreter='tex';
msg='DEFAULT TEXT\color{magenta} MAGENTA TEXT';
titl='Error Dialog Title';
errordlg(msg,titl,opts)
will display the error dialog with black and magenta text as requested.
See
doc errordlg
for all the details...it's old-timey, for sure, no new objects around here! :)

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!