Getting handle of static textbox in MATLAB .
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
yogesh jain
il 6 Lug 2016
Risposto: Shameer Parmar
il 6 Lug 2016
Hello, How can I get numerical handle value of static textbox in MATLAB GUI, like we get for PBs and axes ? thank you
0 Commenti
Risposta accettata
Shameer Parmar
il 6 Lug 2016
static textbox have the handle name as handle.text, handle.text1, handle.text2 etc..
so first you need to check what is the name of your static text
type GUIDE command in the command window, then click on tab "open existing GUI", then select your .fig file
Once your file opened into editable mode, just double click on text box. It will open all property values of that text box.
Check for proprty TAG, what is the value. It should text or text1 or text2 etc etc..
Now let consider it is "text1"
so "get(handles.text1,'String')" will give you the value(name) of text for your static textbox.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!