Form, Form Object, and Item List Methods
The AppEventHandlerList, Declaration, FormList, FormObjectList, and ItemList classes have the following methods:
Additionally the FormList class has the following methods:
 
It is also possible to use a list in an enhanced for loop to operate on all objects in the list.
In the following example, the background color is set to red in all forms, by looping over all forms:
for (Form f : app.form()) { // app.form() is of type FormList
  f.set("background", "red");
}