Changing enable field in GUI property inspector
1 次查看(过去 30 天)
显示 更早的评论
How to i change the enable field in the property ispector?
I have a radio button that when pressed, i want it to disable a text box.
this is what i have
set(handles.ions_dir, 'Enable', false)
where ions_dir is the text box i am trying to disable
but it doesnt seem to work. anyone know whats the correct command? thanks
0 个评论
采纳的回答
Oleg Komarov
2012-3-26
set(handles.ions_dir, 'Enable', 'off')
8 个评论
Oleg Komarov
2012-3-26
With that much info you gave us it would be impossible to guess what calls what.
I suggest to place a break point in the callback to see if it's called.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Background Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!