findobj - find an object with specified property
This routine is currently used to find objects knowing their 'tag' property. It returns handle of the first found object which property 'prop' is equal to 'value'. If such an object does not exist, the function returns an empty matrix.
h=figure(); // creates figure number 1. uicontrol( h, 'style','text', ... 'string','This is a figure', ... 'position',[50 70 100 100], ... 'fontsize',15, ... 'tag','Alabel'); // put a text in figure 1 lab=findobj('tag','Alabel'); // find the object which 'tag' value is 'Alabel' disp('the handle of the label is '+string(lab)); close();
uicontrol , uimenu , set , get ,
Bertrand Guiheneuf