check "edittext" empty or not
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rahma Yeni
el 21 de Abr. de 2012
Comentada: sathya ganesan
el 28 de En. de 2021
Hello all.. ^^ I want to ask, how to check an "edittext" containing value or not..?? Thank you.. :)
0 comentarios
Respuesta aceptada
Walter Roberson
el 21 de Abr. de 2012
S = get(TheHandle, 'String');
if isempty(S)
disp('no value');
else
disp('value is present');
end
Note, though, that the value that is present might be all blanks or other whitespace.
2 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!