Prado\Web\UI\WebControls\TDataList::getItemStyle PHP Method

getItemStyle() public method

public getItemStyle ( ) : TTableItemStyle
return TTableItemStyle the style for item
    public function getItemStyle()
    {
        if (($style = $this->getViewState('ItemStyle', null)) === null) {
            $style = new TTableItemStyle();
            $this->setViewState('ItemStyle', $style, null);
        }
        return $style;
    }
TDataList