Scilab Function
Last update : 14/2/2006

findobj - find an object with specified property

Parameters

Description

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.

Examples


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();
 
  

See Also

uicontrol ,   uimenu ,   set ,   get ,  

Author

Bertrand Guiheneuf