Prado\Web\UI\TControl::getControls PHP Метод

getControls() публичный Метод

public getControls ( ) : TControlCollection
Результат TControlCollection the child control collection
    public function getControls()
    {
        if (!isset($this->_rf[self::RF_CONTROLS])) {
            $this->_rf[self::RF_CONTROLS] = $this->createControlCollection();
        }
        return $this->_rf[self::RF_CONTROLS];
    }
TControl