Prado\Web\UI\WebControls\TDataListItemRenderer::getStyle PHP Метод

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

public getStyle ( ) : TStyle
Результат TStyle the object representing the css style of the control
    public function getStyle()
    {
        if ($style = $this->getViewState('Style', null)) {
            return $style;
        } else {
            $style = $this->createStyle();
            $this->setViewState('Style', $style, null);
            return $style;
        }
    }