How to change the

4 vues (au cours des 30 derniers jours)
Gopinath Karuppannan
Gopinath Karuppannan le 30 Oct 2020
Commenté : Stephen23 le 3 Nov 2020
Hi, i am creating a comment box wich could list all the comments from different functions, So for that i have taken "boxy" as global parameter. But i need to change the editbox comments color based upon "warning" (orange) and "error" (red).
When i try to alter the color for specific line, it automatically alters the color of all the lines. see attachment for better understanding.
Below script for reference purpose not the original script.
My actual need is when i alter the colorstring to "red", the the specific line alone need to change "red" not the every line.
Pushbutton1 ---> comment box
edit1 --> edit box
  2 commentaires
Rik
Rik le 30 Oct 2020
I don't see why you need a global variable.
To answer your question: I am not aware that it is possible to set the color of specific lines. You could hack it by using an axes object with text objects.

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 30 Oct 2020
You are using GUIDE, which uses "traditional" figures.
In traditional figures, edit boxes and text boxes cannot have color for individual lines or individual parts of strings.
I do not know whether it is possible for edit boxes or text boxes to have color with App Designer uifigure() -- there are more formatting facilities for App Designer and I have not researched it enough to figure out all of the possibilties.
For traditional figures, uitable objects can be set to different colors for different cells, provided that the cells are text format. Scrolling these to a particular line (such as the last line) is a bit annoying to code.
For traditional figures, uicontrol style 'listbox' and uicontrol style 'popup' can be set to have different colors for different lines. Scrolling a 'popup' to a particular line is not possible (that I can think of.) Scrolling a listbox to a particular line is a bit annoying to code.
  3 commentaires
Walter Roberson
Walter Roberson le 2 Nov 2020
Not for traditional figures using uicontrol text or uicontrol edit. Those are restricted to plain text.
Unless, that is, you are willing to grab the underlying Java objects and bash on those using Java calls.
Gopinath Karuppannan
Gopinath Karuppannan le 3 Nov 2020
Okay, May be i should have eliminate this because i dont know much about java objects.
Thanks for answers walter.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by