property replicationMethod

(r/w) string replicationMethod;

Typ

Zugriff

This method sets and gets the replication method the binding is using. The valid values are:
function onSample()
{
    var sourceBox = scene.getBoxById("mySourceBox");
    var box       = scene.getBoxById("myBox");
    if (box && sourceBox)
    {
        var binding = box.getDataBinding("myBinding");
        if (binding)
        {
            binding.elementSource = sourceBox;
            binding.path = "value";
            binding.bindMethod = "twoWay";
            binding.replicationMethod = "full";
            binding.connect();
        }
    }
}