Prado\Web\UI\TControl::getControls PHP Method

getControls() public method

public getControls ( ) : TControlCollection
return 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