how to get text from textbox..??
4 次查看(过去 30 天)
显示 更早的评论
How can I get text from TextBox. ?? like edit1.tag?? is it correct?? or anything else??
0 个评论
采纳的回答
Walter Roberson
2012-1-23
get(HandleOfTheBox, 'string')
If you are using GUIDE then it might look like
get(handles.edit1, 'string')
3 个评论
Walter Roberson
2012-1-23
No, neither of those are correct. Possibly this would be correct:
path = get(handles.edit1, 'string');
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!