method update

void update(bool direction);

Argumente

Zurückgegebener Wert

This method is used to explicitly request data exchange from the source to the target, or vice versa. The direction argument should be:
function onUpdate()
{
    var box = scene.getBoxById("myBox");
    var binding = box.getDataBinding("value");
    if (binding)
    {
        binding.update(false);
    }
}