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

21 vues (au cours des 30 derniers jours)
walid albugami
walid albugami le 16 Fév 2021
Commenté : walid albugami le 16 Fév 2021
how can i change the color of the text in the dialog box of errordlg ?

Réponse acceptée

dpb
dpb le 16 Fév 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! :)

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by