how to get text from textbox..??
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How can I get text from TextBox. ?? like edit1.tag?? is it correct?? or anything else??
0 comentarios
Respuesta aceptada
Walter Roberson
el 23 de En. de 2012
get(HandleOfTheBox, 'string')
If you are using GUIDE then it might look like
get(handles.edit1, 'string')
3 comentarios
Walter Roberson
el 23 de En. de 2012
No, neither of those are correct. Possibly this would be correct:
path = get(handles.edit1, 'string');
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!