Prado\Web\UI\ActiveControls\TStyleDiff::getStyleDiff PHP Method

getStyleDiff() protected method

protected getStyleDiff ( ) : array
return array list of changes to the control style.
    protected function getStyleDiff()
    {
        $diff = array_diff_assoc($this->getCombinedStyle($this->_new), $this->getCombinedStyle($this->_old));
        return count($diff) > 0 ? $diff : null;
    }