Gui\Components\Object::set PHP Метод

set() защищенный Метод

this method is used to send the IPC message when a property is set
protected set ( string $name, mixed $value ) : void
$name string Property name
$value mixed Property value
Результат void
    protected function set($name, $value)
    {
        $this->application->sendCommand('setObjectProperty', [$this->lazarusObjectId, $name, $value], function ($result) {
            // Ok, the property changed
        });
    }