Prado\Web\UI\WebControls\TDataGrid::getAlternatingItemStyle PHP 메소드

getAlternatingItemStyle() 공개 메소드

public getAlternatingItemStyle ( ) : TTableItemStyle
리턴 TTableItemStyle the style for each alternating item
    public function getAlternatingItemStyle()
    {
        if (($style = $this->getViewState('AlternatingItemStyle', null)) === null) {
            $style = new TTableItemStyle();
            $this->setViewState('AlternatingItemStyle', $style, null);
        }
        return $style;
    }