Field_Reference::caption PHP Method

caption() public method

public caption ( $x = UNDEFINED )
    public function caption($x = UNDEFINED)
    {
        /** @type Field|bool $f */
        $f = $this->owner->hasElement($this->getDereferenced());
        if ($f) {
            $f->caption($x);
        }
        return parent::caption($x);
    }