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

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

Only when the control is visible will the control be rendered.
public renderControl ( $writer )
    public function renderControl($writer)
    {
        if ($this instanceof IActiveControl || $this->getVisible(false)) {
            if (isset($this->_rf[self::RF_ADAPTER])) {
                $this->_rf[self::RF_ADAPTER]->render($writer);
            } else {
                $this->render($writer);
            }
        }
    }
TControl