~~Title: Efl.Object.name_find~~ ====== Efl.Object.name_find ====== ===== Description ===== %%Find a child object with the given name and return it.%% %%The search string can be a glob (shell style, using *). It can also specify class name in the format of "class:name" where ":" separates class and name. Both class and name can be globs. If the class is specified but the name is empty like "class:" then the search will match any object of that class.%% //Since 1.22// {{page>:develop:api-include:efl:object:method:name_find:description&nouser&nolink&nodate}} ===== Signature ===== name_find @beta @const { params { @in search: string; } return: Efl.Object; } ===== C signature ===== Efl_Object *efl_name_find(const Eo *obj, const char *search); ===== Parameters ===== * **search** //(in)// - %%The name search string.%% ===== Implemented by ===== * [[:develop:api:efl:object:method:name_find|Efl.Object.name_find]]