Effacer les filtres
Effacer les filtres

What is edit text box type in GUI when I using findobj function?

2 vues (au cours des 30 derniers jours)
Teemu Juujärvi
Teemu Juujärvi le 27 Août 2015
Hi,
I try to get GUI edit text box object in separate m-file because I like to print something to this text box from m-file. What is the 'Type' of this edit text box when using findobj function?
Teemu

Réponse acceptée

Cam Salzberger
Cam Salzberger le 31 Août 2015
Hello Teemu,
I understand that you would like to use the findobj function to get access to edit boxes in a GUI.
The 'Type' of an edit box is actually 'uicontrol', just like all other UI Controls (push buttons, pop-up menus, etc). However, you can specify the 'Style' property when calling findobj to get only edit boxes:
figure
uicontrol('Style','pushbutton')
uicontrol('Style','edit')
hEditBoxes = findobj('Type','uicontrol','Style','edit');
Note that if you use findobj a lot in your code, it can slow things down. If at all possible, save the handle from when you create the edit box (or extract it from the handles structure if the GUI is made in GUIDE) and pass it as an input argument to the function that needs access to the edit box.
I hope that this has helped!
-Cam
  1 commentaire
Teemu Juujärvi
Teemu Juujärvi le 1 Sep 2015
Thanks that helps a lot! that argument passing idea was great.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Object Identification dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by