MATLAB Function Reference | ![]() ![]() |
表示
object_handles = findall(handle_list) object_handles = findall(handle_list,'property','value',...)
詳細
object_handles = findall(handle_list)
は、handle_list
で識別されるオブジェクトの下の階層の中のすべてのオブジェクトのハンドルを戻します。
object_handles = findall(handle_list,'property','value',...)
は、handle_list
で識別されるオブジェクトの下の階層の中のすべてのオブジェクトのハンドルを戻します。handle_list
は、指定したプロパティを指定した値に設定したものです。
注意
findall は、findobj と似ていますが、HandleVisibility
をoff
に設定しているオブジェクトでも検出できることが異なります。
例題
plot(1:10) xlabel xlab a = findall(gcf) b = findobj(gcf) c = findall(b,'Type','text') % return the xlabel handle twice d = findobj(b,'Type','text') % can't find the xlabel handle
参考
![]() | find | findfigs | ![]() |