Check if push button has an image on it or not
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hao Wei Low
el 23 de Abr. de 2015
Comentada: Hao Wei Low
el 23 de Abr. de 2015
I have a bunch of push button where the user can put pictures on but how do I check if the push button has an image on it or not? Below is the code I thought would work but wouldn't. Any help is greatly appreciated.
if (handles.pushbutton1,'cdata',[]) || (handles.pushbutton2,'cdata',[])
msgbox('There are still empty tiles')
end
0 comentarios
Respuesta aceptada
Michael Haderlein
el 23 de Abr. de 2015
You need to use get and isequal:
if isequal(get(handles.pushbutton1,'cdata'),[]) || isequal(get(handles.pushbutton2,'cdata'),[])
%...
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox 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!