MATLAB: How to get text from textbox..?

guiguideimage processingmatlab gui

How can I get text from TextBox. ?? like edit1.tag?? is it correct?? or anything else??

Best Answer

get(HandleOfTheBox, 'string')
If you are using GUIDE then it might look like
get(handles.edit1, 'string')