Prado\Web\UI\WebControls\TDataListItemRenderer::getStyle PHP Method

getStyle() public method

public getStyle ( ) : TStyle
return 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;
        }
    }