Hi! I created a Matlab GUI , where an 'Edit text' command is placed. It is initially empty. At a certain point, when I load a number, it is visualized in this 'Edit text' box, with a command like this
set(handles.edit3,'String',num)
where 'num' is the variable associated to the number. Then, when I press another button, I want this Edit text box to be empty again . How can I set this instruction ?

 채택된 답변

Ben11
Ben11 2014년 8월 25일

0 개 추천

At the beginning of this button's callback, use something like this:
set(handles.edit3,'String','')
which displays an empty string

댓글 수: 2

aurc89
aurc89 2014년 8월 25일
Thanks !
Ben11
Ben11 2014년 8월 25일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Environment and Settings에 대해 자세히 알아보기

질문:

2014년 8월 25일

댓글:

2014년 8월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by