QControlBase::Render PHP Метод

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

it is by default), or it will return the rendered HTML as a string.
public Render ( $blnDisplayOutput = true )
    public function Render($blnDisplayOutput = true)
    {
        // Call RenderHelper
        $this->RenderHelper(func_get_args(), __FUNCTION__);
        try {
            $strOutput = $this->GetControlHtml();
        } catch (QCallerException $objExc) {
            $objExc->IncrementOffset();
            throw $objExc;
        }
        // Call RenderOutput, Returning its Contents
        return $this->RenderOutput($strOutput, $blnDisplayOutput);
    }