Getting handle of static textbox in MATLAB .

조회 수: 7 (최근 30일)
yogesh jain
yogesh jain 2016년 7월 6일
답변: Shameer Parmar 2016년 7월 6일
Hello, How can I get numerical handle value of static textbox in MATLAB GUI, like we get for PBs and axes ? thank you

채택된 답변

Shameer Parmar
Shameer Parmar 2016년 7월 6일
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개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by