Prado\Web\UI\WebControls\TDataList::getSeparatorStyle PHP Méthode

getSeparatorStyle() public méthode

public getSeparatorStyle ( ) : TTableItemStyle
Résultat TTableItemStyle the style for separator
    public function getSeparatorStyle()
    {
        if (($style = $this->getViewState('SeparatorStyle', null)) === null) {
            $style = new TTableItemStyle();
            $this->setViewState('SeparatorStyle', $style, null);
        }
        return $style;
    }
TDataList