Prado\Web\UI\TControl::removeAttribute PHP Метод

removeAttribute() публичный Метод

Removes the named attribute.
public removeAttribute ( $name ) : string
Результат string attribute value removed, null if attribute does not exist.
    public function removeAttribute($name)
    {
        if ($attributes = $this->getViewState('Attributes', null)) {
            return $attributes->remove($name);
        } else {
            return null;
        }
    }
TControl