Forum Discussion
rraghvani
Champion Level 3
9 months agoHere's a simple example, of using FindAll to search for all objects that have the specified value of 'ObjectType' and of the specified property 'Button'.
The search is performed in the object hierarchy displayed in the Object Browser panel starting from 'Panel("main")' object and continuing down the hierarchy to the specified depth of 1.
If you were to do
let headerItems = headerInputs.FindAll('type','*',5000);
Log.Message("Number of items: " & UBound(headerItems))
What does "Number of items:" show? And what does the Object Browser hierarchy show?