Prado\Web\UI\TControlCollection::removeAt PHP 메소드

removeAt() 공개 메소드

This overrides the parent implementation by performing additional cleanup work when removing a child control.
public removeAt ( $index ) : mixed
리턴 mixed the removed item.
    public function removeAt($index)
    {
        $item = parent::removeAt($index);
        if ($item instanceof TControl) {
            $this->_o->removedControl($item);
        }
        return $item;
    }