ContainerControl.getChildControls

Returns an array of controls that are immediate children of this control.

Javascript example:

 for each (var ctrl in controls.PANEL1.childControls)
 {
    ctrl.backgroundColor = "yellow";
 }
 

returns UNKNOWNcom.ebasetech.xi.api.controls.Control[]